@cntyclub/ui-react 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. package/dist/chunk-HDGMSYQS.js +26461 -0
  2. package/dist/chunk-HDGMSYQS.js.map +1 -0
  3. package/dist/chunk-PR4QN5HX.js +39 -0
  4. package/dist/chunk-PR4QN5HX.js.map +1 -0
  5. package/dist/form.d.ts +175 -0
  6. package/dist/form.js +5207 -0
  7. package/dist/form.js.map +1 -0
  8. package/dist/index.d.ts +1462 -0
  9. package/dist/index.js +81862 -0
  10. package/dist/index.js.map +1 -0
  11. package/dist/input-CZvh825j.d.ts +24 -0
  12. package/dist/qr-code-styling-3Y6LZH6V.js +1123 -0
  13. package/dist/qr-code-styling-3Y6LZH6V.js.map +1 -0
  14. package/package.json +79 -0
  15. package/src/components/form/checkbox-group-field.tsx +101 -0
  16. package/src/components/form/date-field.tsx +79 -0
  17. package/src/components/form/date-range-field.tsx +106 -0
  18. package/src/components/form/form-context.ts +10 -0
  19. package/src/components/form/form.tsx +54 -0
  20. package/src/components/form/number-field.tsx +69 -0
  21. package/src/components/form/select-field.tsx +76 -0
  22. package/src/components/form/submit-button.tsx +28 -0
  23. package/src/components/form/text-field.tsx +107 -0
  24. package/src/components/layout/dashboard-header.tsx +54 -0
  25. package/src/components/layout/dashboard-panel.tsx +34 -0
  26. package/src/components/theme-provider.tsx +403 -0
  27. package/src/components/ui/accordion.tsx +69 -0
  28. package/src/components/ui/alert-dialog.tsx +169 -0
  29. package/src/components/ui/alert.tsx +80 -0
  30. package/src/components/ui/animated-theme-toggler.tsx +265 -0
  31. package/src/components/ui/app-store-buttons.tsx +182 -0
  32. package/src/components/ui/aspect-ratio.tsx +23 -0
  33. package/src/components/ui/autocomplete.tsx +296 -0
  34. package/src/components/ui/avatar-group.tsx +95 -0
  35. package/src/components/ui/avatar.tsx +285 -0
  36. package/src/components/ui/badge-group.tsx +160 -0
  37. package/src/components/ui/badge.tsx +172 -0
  38. package/src/components/ui/breadcrumb.tsx +112 -0
  39. package/src/components/ui/button.tsx +77 -0
  40. package/src/components/ui/calendar.tsx +137 -0
  41. package/src/components/ui/card.tsx +244 -0
  42. package/src/components/ui/carousel.tsx +258 -0
  43. package/src/components/ui/chart.tsx +379 -0
  44. package/src/components/ui/checkbox-group.tsx +16 -0
  45. package/src/components/ui/checkbox.tsx +82 -0
  46. package/src/components/ui/collapsible.tsx +45 -0
  47. package/src/components/ui/combobox.tsx +411 -0
  48. package/src/components/ui/command.tsx +264 -0
  49. package/src/components/ui/context-menu.tsx +271 -0
  50. package/src/components/ui/credit-card.tsx +214 -0
  51. package/src/components/ui/dialog.tsx +196 -0
  52. package/src/components/ui/drawer.tsx +135 -0
  53. package/src/components/ui/empty.tsx +127 -0
  54. package/src/components/ui/featured-icon.tsx +149 -0
  55. package/src/components/ui/field.tsx +88 -0
  56. package/src/components/ui/fieldset.tsx +29 -0
  57. package/src/components/ui/form.tsx +17 -0
  58. package/src/components/ui/frame.tsx +82 -0
  59. package/src/components/ui/generic-empty.tsx +142 -0
  60. package/src/components/ui/group.tsx +97 -0
  61. package/src/components/ui/horizontal-scroll-fader.tsx +228 -0
  62. package/src/components/ui/input-group.tsx +102 -0
  63. package/src/components/ui/input-otp.tsx +96 -0
  64. package/src/components/ui/input.tsx +66 -0
  65. package/src/components/ui/item.tsx +198 -0
  66. package/src/components/ui/kbd.tsx +30 -0
  67. package/src/components/ui/label.tsx +28 -0
  68. package/src/components/ui/menu.tsx +312 -0
  69. package/src/components/ui/menubar.tsx +93 -0
  70. package/src/components/ui/meter.tsx +67 -0
  71. package/src/components/ui/multi-select.tsx +308 -0
  72. package/src/components/ui/navigation-menu.tsx +143 -0
  73. package/src/components/ui/number-field.tsx +160 -0
  74. package/src/components/ui/pagination-controls.tsx +74 -0
  75. package/src/components/ui/pagination.tsx +149 -0
  76. package/src/components/ui/popover.tsx +119 -0
  77. package/src/components/ui/preview-card.tsx +55 -0
  78. package/src/components/ui/progress.tsx +289 -0
  79. package/src/components/ui/qr-code.tsx +150 -0
  80. package/src/components/ui/radio-group.tsx +103 -0
  81. package/src/components/ui/resizable.tsx +56 -0
  82. package/src/components/ui/scroll-area.tsx +90 -0
  83. package/src/components/ui/scroller.tsx +38 -0
  84. package/src/components/ui/section-header.tsx +118 -0
  85. package/src/components/ui/select.tsx +181 -0
  86. package/src/components/ui/separator.tsx +23 -0
  87. package/src/components/ui/sheet.tsx +224 -0
  88. package/src/components/ui/sidebar.tsx +744 -0
  89. package/src/components/ui/skeleton.tsx +16 -0
  90. package/src/components/ui/slider.tsx +108 -0
  91. package/src/components/ui/smooth-scroll.tsx +143 -0
  92. package/src/components/ui/social-button.tsx +247 -0
  93. package/src/components/ui/spinner-on-demand.tsx +32 -0
  94. package/src/components/ui/spinner.tsx +18 -0
  95. package/src/components/ui/stat.tsx +187 -0
  96. package/src/components/ui/stepper.tsx +167 -0
  97. package/src/components/ui/switch.tsx +56 -0
  98. package/src/components/ui/table.tsx +126 -0
  99. package/src/components/ui/tabs.tsx +90 -0
  100. package/src/components/ui/tag.tsx +229 -0
  101. package/src/components/ui/target-countdown.tsx +46 -0
  102. package/src/components/ui/text-editor.tsx +313 -0
  103. package/src/components/ui/textarea.tsx +51 -0
  104. package/src/components/ui/timeline.tsx +116 -0
  105. package/src/components/ui/toast.tsx +268 -0
  106. package/src/components/ui/toggle-group.tsx +101 -0
  107. package/src/components/ui/toggle.tsx +45 -0
  108. package/src/components/ui/toolbar.tsx +89 -0
  109. package/src/components/ui/tooltip.tsx +102 -0
  110. package/src/components/ui/vertical-scroll-fader.tsx +250 -0
  111. package/src/components/ui/video-player.tsx +275 -0
  112. package/src/components/upload/avatar-upload-base.tsx +131 -0
  113. package/src/components/upload/image-upload-base.tsx +112 -0
  114. package/src/form.ts +17 -0
  115. package/src/index.ts +125 -0
  116. package/src/lib/hooks/use-callback-ref.ts +15 -0
  117. package/src/lib/hooks/use-first-render.ts +11 -0
  118. package/src/lib/hooks/use-hover.ts +53 -0
  119. package/src/lib/hooks/use-is-tab-active.ts +17 -0
  120. package/src/lib/hooks/use-media-query.ts +164 -0
  121. package/src/lib/utils/css.ts +6 -0
  122. package/src/styles.css +300 -0
  123. package/src/types/helpers.ts +24 -0
  124. package/src/types/react.d.ts +7 -0
@@ -0,0 +1,1462 @@
1
+ import * as React$1 from 'react';
2
+ import React__default from 'react';
3
+ import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
4
+ import * as class_variance_authority_types from 'class-variance-authority/types';
5
+ import { VariantProps } from 'class-variance-authority';
6
+ import * as _base_ui_react from '@base-ui/react';
7
+ import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
8
+ import { useRender } from '@base-ui/react/use-render';
9
+ import { Autocomplete as Autocomplete$1 } from '@base-ui/react/autocomplete';
10
+ import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
11
+ import { B as Button, a as InputProps, I as Input } from './input-CZvh825j.js';
12
+ export { b as ButtonProps, c as buttonVariants } from './input-CZvh825j.js';
13
+ import { DayPicker } from 'react-day-picker';
14
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
15
+ import * as RechartsPrimitive from 'recharts';
16
+ import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
17
+ import { CheckboxGroup as CheckboxGroup$1 } from '@base-ui/react/checkbox-group';
18
+ import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
19
+ import { Combobox as Combobox$1 } from '@base-ui/react/combobox';
20
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
21
+ import { Drawer as Drawer$1 } from 'vaul';
22
+ import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
23
+ import { Field as Field$1 } from '@base-ui/react/field';
24
+ import { Fieldset as Fieldset$1 } from '@base-ui/react/fieldset';
25
+ import { Form as Form$1 } from '@base-ui/react/form';
26
+ import { Separator as Separator$1 } from '@base-ui/react/separator';
27
+ import { OTPInput } from 'input-otp';
28
+ import { Menu as Menu$1 } from '@base-ui/react/menu';
29
+ import { MenubarProps } from '@base-ui/react/menubar';
30
+ import { Meter as Meter$1 } from '@base-ui/react/meter';
31
+ import { Select as Select$1 } from '@base-ui/react/select';
32
+ import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
33
+ import { NumberField as NumberField$1 } from '@base-ui/react/number-field';
34
+ import { Popover as Popover$1 } from '@base-ui/react/popover';
35
+ import { PreviewCard as PreviewCard$1 } from '@base-ui/react/preview-card';
36
+ import { Progress as Progress$1 } from '@base-ui/react/progress';
37
+ import { Options } from 'qr-code-styling';
38
+ import { Radio as Radio$1 } from '@base-ui/react/radio';
39
+ import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
40
+ import * as ResizablePrimitive from 'react-resizable-panels';
41
+ import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
42
+ import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
43
+ import { Slider as Slider$1 } from '@base-ui/react/slider';
44
+ import { Loader2Icon } from 'lucide-react';
45
+ import { useSpinDelay } from 'spin-delay';
46
+ import { Switch as Switch$1 } from '@base-ui/react/switch';
47
+ import { Tabs as Tabs$1 } from '@base-ui/react/tabs';
48
+ import { Duration } from 'date-fns';
49
+ import { Toast } from '@base-ui/react/toast';
50
+ import { Toggle as Toggle$2 } from '@base-ui/react/toggle';
51
+ import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
52
+ import { Toolbar as Toolbar$1 } from '@base-ui/react/toolbar';
53
+ import { ClassValue } from 'clsx';
54
+ import '@base-ui/react/input';
55
+
56
+ declare function Accordion(props: Accordion$1.Root.Props): React$1.JSX.Element;
57
+ declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): React$1.JSX.Element;
58
+ declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): React$1.JSX.Element;
59
+ declare function AccordionPanel({ className, children, ...props }: Accordion$1.Panel.Props): React$1.JSX.Element;
60
+
61
+ declare const alertVariants: (props?: ({
62
+ variant?: "default" | "error" | "info" | "success" | "warning" | null | undefined;
63
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
64
+ declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): React$1.JSX.Element;
65
+ declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
66
+ declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
67
+ declare function AlertAction({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
68
+
69
+ declare const AlertDialogCreateHandle: typeof AlertDialog$1.createHandle;
70
+ declare const AlertDialog: typeof AlertDialog$1.Root;
71
+ declare const AlertDialogPortal: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.DialogPortalProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
72
+ declare function AlertDialogTrigger(props: AlertDialog$1.Trigger.Props): React$1.JSX.Element;
73
+ declare function AlertDialogBackdrop({ className, ...props }: AlertDialog$1.Backdrop.Props): React$1.JSX.Element;
74
+ declare function AlertDialogViewport({ className, ...props }: AlertDialog$1.Viewport.Props): React$1.JSX.Element;
75
+ declare function AlertDialogPopup({ className, bottomStickOnMobile, ...props }: AlertDialog$1.Popup.Props & {
76
+ bottomStickOnMobile?: boolean;
77
+ }): React$1.JSX.Element;
78
+ declare function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
79
+ declare function AlertDialogFooter({ className, variant, ...props }: React.ComponentProps<"div"> & {
80
+ variant?: "default" | "bare";
81
+ }): React$1.JSX.Element;
82
+ declare function AlertDialogTitle({ className, ...props }: AlertDialog$1.Title.Props): React$1.JSX.Element;
83
+ declare function AlertDialogDescription({ className, ...props }: AlertDialog$1.Description.Props): React$1.JSX.Element;
84
+ declare function AlertDialogClose(props: AlertDialog$1.Close.Props): React$1.JSX.Element;
85
+
86
+ type ThemeTogglerVariant = "circle" | "square" | "triangle" | "diamond" | "hexagon" | "rectangle" | "star";
87
+ interface AnimatedThemeTogglerProps extends React.ComponentPropsWithoutRef<"button"> {
88
+ /** Duration of the reveal animation in milliseconds. */
89
+ duration?: number;
90
+ /** Clip-path shape used for the view-transition reveal. */
91
+ variant?: ThemeTogglerVariant;
92
+ /** Expand from the viewport center instead of the button center. */
93
+ fromCenter?: boolean;
94
+ }
95
+ /**
96
+ * Animated light/dark toggle using the View Transitions API.
97
+ *
98
+ * Drives the kit's `ThemeProvider` (via `useTheme`), so persistence and the
99
+ * `data-theme` attribute are handled for you. On browsers without the View
100
+ * Transitions API it falls back to an instant toggle.
101
+ *
102
+ * Requires the kit stylesheet (`@countryclub/ui-react/styles.css`), which
103
+ * defines the scoped `::view-transition` rules.
104
+ */
105
+ declare function AnimatedThemeToggler({ className, duration, variant, fromCenter, ...props }: AnimatedThemeTogglerProps): React$1.JSX.Element;
106
+
107
+ declare const appStoreButtonVariants: (props?: ({
108
+ variant?: "default" | "outline" | null | undefined;
109
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
110
+ declare function GooglePlayLogoIcon(props: React$1.ComponentProps<"svg">): React$1.JSX.Element;
111
+ declare function AppleLogoIcon(props: React$1.ComponentProps<"svg">): React$1.JSX.Element;
112
+ declare function GalaxyStoreLogoIcon(props: React$1.ComponentProps<"svg">): React$1.JSX.Element;
113
+ declare function AppGalleryLogoIcon(props: React$1.ComponentProps<"svg">): React$1.JSX.Element;
114
+ type AppStoreButtonStore = "google-play" | "app-store" | "galaxy-store" | "app-gallery";
115
+ interface AppStoreButtonProps extends useRender.ComponentProps<"button"> {
116
+ /** Which store badge to render: google-play, app-store, galaxy-store or app-gallery. */
117
+ store: AppStoreButtonStore;
118
+ variant?: VariantProps<typeof appStoreButtonVariants>["variant"];
119
+ }
120
+ declare function AppStoreButton({ className, store, variant, render, ...props }: AppStoreButtonProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
121
+
122
+ declare function AspectRatio({ ratio, className, style, ...props }: React$1.ComponentProps<"div"> & {
123
+ ratio?: number;
124
+ }): React$1.JSX.Element;
125
+
126
+ declare const Autocomplete: typeof Autocomplete$1.Root;
127
+ declare function AutocompleteInput({ className, showTrigger, showClear, startAddon, size, ...props }: Omit<Autocomplete$1.Input.Props, "size"> & {
128
+ showTrigger?: boolean;
129
+ showClear?: boolean;
130
+ startAddon?: React.ReactNode;
131
+ size?: "sm" | "default" | "lg" | number;
132
+ ref?: React.Ref<HTMLInputElement>;
133
+ }): React$1.JSX.Element;
134
+ declare function AutocompletePopup({ className, children, sideOffset, ...props }: Autocomplete$1.Popup.Props & {
135
+ sideOffset?: number;
136
+ }): React$1.JSX.Element;
137
+ declare function AutocompleteItem({ className, children, ...props }: Autocomplete$1.Item.Props): React$1.JSX.Element;
138
+ declare function AutocompleteSeparator({ className, ...props }: Autocomplete$1.Separator.Props): React$1.JSX.Element;
139
+ declare function AutocompleteGroup({ className, ...props }: Autocomplete$1.Group.Props): React$1.JSX.Element;
140
+ declare function AutocompleteGroupLabel({ className, ...props }: Autocomplete$1.GroupLabel.Props): React$1.JSX.Element;
141
+ declare function AutocompleteEmpty({ className, ...props }: Autocomplete$1.Empty.Props): React$1.JSX.Element;
142
+ declare function AutocompleteRow({ className, ...props }: Autocomplete$1.Row.Props): React$1.JSX.Element;
143
+ declare function AutocompleteValue({ ...props }: Autocomplete$1.Value.Props): React$1.JSX.Element;
144
+ declare function AutocompleteList({ className, ...props }: Autocomplete$1.List.Props): React$1.JSX.Element;
145
+ declare function AutocompleteClear({ className, ...props }: Autocomplete$1.Clear.Props): React$1.JSX.Element;
146
+ declare function AutocompleteStatus({ className, ...props }: Autocomplete$1.Status.Props): React$1.JSX.Element;
147
+ declare function AutocompleteCollection({ ...props }: Autocomplete$1.Collection.Props): React$1.JSX.Element;
148
+ declare function AutocompleteTrigger({ className, ...props }: Autocomplete$1.Trigger.Props): React$1.JSX.Element;
149
+ declare const useAutocompleteFilter: (options?: _base_ui_react.AutocompleteFilterOptions) => _base_ui_react.AutocompleteFilter;
150
+
151
+ declare const avatarVariants: (props?: ({
152
+ size?: "lg" | "sm" | "xl" | "xs" | "md" | "2xl" | null | undefined;
153
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
154
+ type AvatarSize$1 = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
155
+ interface AvatarProps extends Avatar$1.Root.Props, VariantProps<typeof avatarVariants> {
156
+ /** Image URL. When omitted or it fails to load, the fallback is shown. */
157
+ src?: string;
158
+ alt?: string;
159
+ /** Initials shown when there is no image. */
160
+ initials?: React$1.ReactNode;
161
+ /** Custom fallback node (overrides initials and the placeholder icon). */
162
+ placeholder?: React$1.ReactNode;
163
+ /** Icon component used as the fallback when nothing else is provided. */
164
+ placeholderIcon?: React$1.ElementType;
165
+ /** A presence dot in the bottom-right corner. */
166
+ status?: "online" | "offline";
167
+ /** Shows a verified tick in the bottom-right corner. */
168
+ verified?: boolean;
169
+ /** A node (e.g. <AvatarCompanyIcon />) shown in the top-right corner. */
170
+ badge?: React$1.ReactNode;
171
+ }
172
+ declare function Avatar({ className, size, src, alt, initials, placeholder, placeholderIcon: PlaceholderIcon, status, verified, badge, children, ...props }: AvatarProps): React$1.JSX.Element;
173
+ declare function AvatarImage({ className, ...props }: Avatar$1.Image.Props): React$1.JSX.Element;
174
+ declare function AvatarFallback({ className, ...props }: Avatar$1.Fallback.Props): React$1.JSX.Element;
175
+ /** A small company/brand logo badge, meant for the Avatar `badge` prop. */
176
+ declare function AvatarCompanyIcon({ className, size, alt, ...props }: React$1.ComponentProps<"img"> & {
177
+ size?: "sm" | "md" | "lg";
178
+ }): React$1.JSX.Element;
179
+ /** A dashed "add" button sized to match avatars — for avatar groups. */
180
+ declare function AvatarAddButton({ className, size, ...props }: React$1.ComponentProps<"button"> & {
181
+ size?: AvatarSize$1;
182
+ }): React$1.JSX.Element;
183
+ /** An avatar paired with a title and subtitle. */
184
+ declare function AvatarLabelGroup({ className, size, src, alt, initials, status, verified, title, subtitle, ...props }: React$1.ComponentProps<"div"> & {
185
+ size?: "sm" | "md" | "lg";
186
+ src?: string;
187
+ alt?: string;
188
+ initials?: string;
189
+ status?: "online" | "offline";
190
+ verified?: boolean;
191
+ title: React$1.ReactNode;
192
+ subtitle?: React$1.ReactNode;
193
+ }): React$1.JSX.Element;
194
+ /** A larger, framed profile photo with optional verified tick. */
195
+ declare function AvatarProfilePhoto({ className, size, ...props }: Omit<AvatarProps, "size"> & {
196
+ size?: "sm" | "md" | "lg";
197
+ }): React$1.JSX.Element;
198
+
199
+ type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
200
+ declare const avatarGroupVariants: (props?: ({
201
+ overlap?: "lg" | "sm" | "md" | null | undefined;
202
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
203
+ interface AvatarGroupItem {
204
+ src?: string;
205
+ /** Initials shown when there is no image. */
206
+ initials?: React$1.ReactNode;
207
+ alt?: string;
208
+ }
209
+ interface AvatarGroupProps extends React$1.ComponentProps<"div">, VariantProps<typeof avatarGroupVariants> {
210
+ /** Data-driven avatars. Omit to compose `<Avatar>` children yourself. */
211
+ items?: AvatarGroupItem[];
212
+ /** Cap the visible avatars; the rest collapse into a "+N" chip. */
213
+ max?: number;
214
+ size?: AvatarSize;
215
+ }
216
+ /**
217
+ * A row of overlapping avatars with an overflow "+N" chip. Pass `items` for the
218
+ * data-driven path, or compose `<Avatar>` children directly for full control.
219
+ */
220
+ declare function AvatarGroup({ className, items, max, size, overlap, children, ...props }: AvatarGroupProps): React$1.JSX.Element;
221
+
222
+ declare const badgeVariants: (props?: ({
223
+ shape?: "default" | "pill" | null | undefined;
224
+ size?: "default" | "lg" | "sm" | null | undefined;
225
+ variant?: "default" | "error" | "info" | "success" | "warning" | "destructive" | "outline" | "secondary" | "modern" | null | undefined;
226
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
227
+ interface BadgeProps extends useRender.ComponentProps<"span"> {
228
+ variant?: VariantProps<typeof badgeVariants>["variant"];
229
+ size?: VariantProps<typeof badgeVariants>["size"];
230
+ shape?: VariantProps<typeof badgeVariants>["shape"];
231
+ }
232
+ declare function Badge({ className, variant, size, shape, render, ...props }: BadgeProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
233
+ /** A small status dot. Inherits the badge's text color; recolor via className. */
234
+ declare function BadgeDot({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
235
+ /** A tiny round avatar image sized to sit inside a badge. */
236
+ declare function BadgeAvatar({ alt, className, ...props }: React$1.ComponentProps<"img">): React$1.JSX.Element;
237
+ /** A round country flag. `country` is an ISO 3166-1 alpha-2 code (e.g. "AU"). */
238
+ declare function BadgeFlag({ alt, className, country, src, ...props }: React$1.ComponentProps<"img"> & {
239
+ country?: string;
240
+ }): React$1.JSX.Element;
241
+ /** A small remove button for dismissible badges. Renders an X by default. */
242
+ declare function BadgeCloseButton({ children, className, ...props }: React$1.ComponentProps<"button">): React$1.JSX.Element;
243
+
244
+ declare const badgeGroupVariants: (props?: ({
245
+ align?: "leading" | "trailing" | null | undefined;
246
+ color?: "error" | "success" | "warning" | "gray" | "brand" | null | undefined;
247
+ variant?: "pill" | "modern" | null | undefined;
248
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
249
+ type BadgeGroupColor = NonNullable<VariantProps<typeof badgeGroupVariants>["color"]>;
250
+ interface BadgeGroupProps extends Omit<useRender.ComponentProps<"span">, "color"> {
251
+ /** `pill` is a tonal, fully-rounded chip; `modern` is a bordered card-style chip with a status dot. */
252
+ variant?: VariantProps<typeof badgeGroupVariants>["variant"];
253
+ color?: BadgeGroupColor;
254
+ /** Which side of the message the inner badge sits on. */
255
+ align?: VariantProps<typeof badgeGroupVariants>["align"];
256
+ /** Short label rendered inside the inner badge. */
257
+ badge: React$1.ReactNode;
258
+ /** Arrow shown after the message (leading) or inside the badge (trailing). Pass `null` to hide. */
259
+ icon?: React$1.ReactNode;
260
+ }
261
+ declare function BadgeGroup({ className, variant, color, align, badge, icon, children, render, ...props }: BadgeGroupProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
262
+
263
+ declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): React$1.JSX.Element;
264
+ declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): React$1.JSX.Element;
265
+ declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
266
+ declare function BreadcrumbLink({ className, render, ...props }: useRender.ComponentProps<"a">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
267
+ declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
268
+ declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
269
+ declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
270
+
271
+ declare function Calendar({ className, classNames, showOutsideDays, components: userComponents, ...props }: React$1.ComponentProps<typeof DayPicker>): React$1.JSX.Element;
272
+
273
+ declare function Card({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
274
+ declare function CardFrame({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
275
+ declare function CardFrameHeader({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
276
+ declare function CardFrameTitle({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
277
+ declare function CardFrameDescription({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
278
+ declare function CardFrameFooter({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
279
+ declare function CardHeader({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
280
+ declare function CardTitle({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
281
+ declare function CardDescription({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
282
+ declare function CardAction({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
283
+ declare function CardPanel({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
284
+ declare function CardFooter({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
285
+
286
+ type CarouselApi = UseEmblaCarouselType[1];
287
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
288
+ type CarouselOptions = UseCarouselParameters[0];
289
+ type CarouselPlugin = UseCarouselParameters[1];
290
+ type CarouselProps = {
291
+ opts?: CarouselOptions;
292
+ plugins?: CarouselPlugin;
293
+ orientation?: "horizontal" | "vertical";
294
+ setApi?: (api: CarouselApi) => void;
295
+ /** Fades the leading/trailing edges of the viewport for a soft overflow. */
296
+ fade?: boolean;
297
+ };
298
+ type CarouselContextProps = {
299
+ carouselRef: ReturnType<typeof useEmblaCarousel>[0];
300
+ api: ReturnType<typeof useEmblaCarousel>[1];
301
+ scrollPrev: () => void;
302
+ scrollNext: () => void;
303
+ canScrollPrev: boolean;
304
+ canScrollNext: boolean;
305
+ } & CarouselProps;
306
+ declare function useCarousel(): CarouselContextProps;
307
+ declare function Carousel({ orientation, opts, setApi, plugins, fade, className, children, ...props }: React$1.ComponentProps<"div"> & CarouselProps): React$1.JSX.Element;
308
+ declare function CarouselContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
309
+ declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
310
+ declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
311
+ declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
312
+
313
+ declare const THEMES: {
314
+ readonly light: "";
315
+ readonly dark: "[data-theme=\"dark\"]";
316
+ };
317
+ type ChartConfig = {
318
+ [k in string]: {
319
+ label?: React$1.ReactNode;
320
+ icon?: React$1.ComponentType;
321
+ } & ({
322
+ color?: string;
323
+ theme?: never;
324
+ } | {
325
+ color?: never;
326
+ theme: Record<keyof typeof THEMES, string>;
327
+ });
328
+ };
329
+ declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
330
+ config: ChartConfig;
331
+ children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
332
+ }): React$1.JSX.Element;
333
+ declare const ChartStyle: ({ id, config }: {
334
+ id: string;
335
+ config: ChartConfig;
336
+ }) => React$1.JSX.Element | null;
337
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
338
+ type TooltipPayloadItem = {
339
+ dataKey?: string | number;
340
+ name?: string | number;
341
+ value?: number | string;
342
+ color?: string;
343
+ fill?: string;
344
+ payload?: Record<string, unknown> & {
345
+ fill?: string;
346
+ };
347
+ };
348
+ declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<"div"> & {
349
+ active?: boolean;
350
+ payload?: TooltipPayloadItem[];
351
+ indicator?: "line" | "dot" | "dashed";
352
+ hideLabel?: boolean;
353
+ hideIndicator?: boolean;
354
+ label?: unknown;
355
+ labelFormatter?: (value: React$1.ReactNode, payload: TooltipPayloadItem[]) => React$1.ReactNode;
356
+ labelClassName?: string;
357
+ formatter?: (value: number | string, name: string | number, item: TooltipPayloadItem, index: number, payload: TooltipPayloadItem["payload"]) => React$1.ReactNode;
358
+ color?: string;
359
+ nameKey?: string;
360
+ labelKey?: string;
361
+ }): React$1.JSX.Element | null;
362
+ declare const ChartLegend: React$1.MemoExoticComponent<(outsideProps: RechartsPrimitive.LegendProps) => React$1.ReactPortal | null>;
363
+ type LegendPayloadItem = {
364
+ value?: string | number;
365
+ dataKey?: string | number;
366
+ color?: string;
367
+ };
368
+ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & {
369
+ hideIcon?: boolean;
370
+ payload?: LegendPayloadItem[];
371
+ verticalAlign?: "top" | "bottom" | "middle";
372
+ nameKey?: string;
373
+ }): React$1.JSX.Element | null;
374
+
375
+ declare const checkboxSizes: {
376
+ readonly sm: {
377
+ readonly box: "size-4.5 sm:size-4";
378
+ readonly icon: "size-3.5 sm:size-3";
379
+ };
380
+ readonly md: {
381
+ readonly box: "size-5";
382
+ readonly icon: "size-4";
383
+ };
384
+ };
385
+ interface CheckboxProps extends Checkbox$1.Root.Props {
386
+ /** Visual size of the checkbox. Defaults to "sm". */
387
+ size?: keyof typeof checkboxSizes;
388
+ }
389
+ declare function Checkbox({ className, size, ...props }: CheckboxProps): React$1.JSX.Element;
390
+
391
+ declare function CheckboxGroup({ className, ...props }: CheckboxGroup$1.Props): React$1.JSX.Element;
392
+
393
+ declare function Collapsible({ ...props }: Collapsible$1.Root.Props): React$1.JSX.Element;
394
+ declare function CollapsibleTrigger({ className, ...props }: Collapsible$1.Trigger.Props): React$1.JSX.Element;
395
+ declare function CollapsiblePanel({ className, ...props }: Collapsible$1.Panel.Props): React$1.JSX.Element;
396
+
397
+ declare function Combobox<ItemValue, Multiple extends boolean | undefined = false>(props: Combobox$1.Root.Props<ItemValue, Multiple>): React$1.JSX.Element;
398
+ declare function ComboboxInput({ className, showTrigger, showClear, startAddon, size, ...props }: Omit<Combobox$1.Input.Props, "size"> & {
399
+ showTrigger?: boolean;
400
+ showClear?: boolean;
401
+ startAddon?: React$1.ReactNode;
402
+ size?: "sm" | "default" | "lg" | number;
403
+ ref?: React$1.Ref<HTMLInputElement>;
404
+ }): React$1.JSX.Element;
405
+ declare function ComboboxTrigger({ className, ...props }: Combobox$1.Trigger.Props): React$1.JSX.Element;
406
+ declare function ComboboxPopup({ className, children, sideOffset, ...props }: Combobox$1.Popup.Props & {
407
+ sideOffset?: number;
408
+ }): React$1.JSX.Element;
409
+ declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): React$1.JSX.Element;
410
+ declare function ComboboxSeparator({ className, ...props }: Combobox$1.Separator.Props): React$1.JSX.Element;
411
+ declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): React$1.JSX.Element;
412
+ declare function ComboboxGroupLabel({ className, ...props }: Combobox$1.GroupLabel.Props): React$1.JSX.Element;
413
+ declare function ComboboxEmpty({ className, ...props }: Combobox$1.Empty.Props): React$1.JSX.Element;
414
+ declare function ComboboxRow({ className, ...props }: Combobox$1.Row.Props): React$1.JSX.Element;
415
+ declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): React$1.JSX.Element;
416
+ declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): React$1.JSX.Element;
417
+ declare function ComboboxClear({ className, ...props }: Combobox$1.Clear.Props): React$1.JSX.Element;
418
+ declare function ComboboxStatus({ className, ...props }: Combobox$1.Status.Props): React$1.JSX.Element;
419
+ declare function ComboboxCollection(props: Combobox$1.Collection.Props): React$1.JSX.Element;
420
+ declare function ComboboxChips({ className, children, startAddon, ...props }: Combobox$1.Chips.Props & {
421
+ startAddon?: React$1.ReactNode;
422
+ }): React$1.JSX.Element;
423
+ declare function ComboboxChip({ children, ...props }: Combobox$1.Chip.Props): React$1.JSX.Element;
424
+ declare const useComboboxFilter: typeof Combobox$1.useFilter;
425
+
426
+ declare const CommandDialog: typeof Dialog$1.Root;
427
+ declare const CommandCreateHandle: typeof Dialog$1.createHandle;
428
+ declare function CommandDialogTrigger(props: Dialog$1.Trigger.Props): React$1.JSX.Element;
429
+ declare function CommandDialogPopup({ className, children, ...props }: Dialog$1.Popup.Props): React$1.JSX.Element;
430
+ declare function Command({ autoHighlight, keepHighlight, ...props }: React$1.ComponentProps<typeof Autocomplete>): React$1.JSX.Element;
431
+ declare function CommandInput({ className, placeholder, ...props }: React$1.ComponentProps<typeof AutocompleteInput>): React$1.JSX.Element;
432
+ declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof AutocompleteList>): React$1.JSX.Element;
433
+ declare function CommandEmpty({ className, ...props }: React$1.ComponentProps<typeof AutocompleteEmpty>): React$1.JSX.Element;
434
+ declare function CommandPanel({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
435
+ declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof AutocompleteGroup>): React$1.JSX.Element;
436
+ declare function CommandGroupLabel({ className, ...props }: React$1.ComponentProps<typeof AutocompleteGroupLabel>): React$1.JSX.Element;
437
+ declare function CommandCollection({ ...props }: React$1.ComponentProps<typeof AutocompleteCollection>): React$1.JSX.Element;
438
+ declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof AutocompleteItem>): React$1.JSX.Element;
439
+ declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof AutocompleteSeparator>): React$1.JSX.Element;
440
+ declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"kbd">): React$1.JSX.Element;
441
+ declare function CommandFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
442
+
443
+ type CreditCardType = "transparent" | "transparent-gradient" | "brand-dark" | "brand-light" | "gray-dark" | "gray-light" | "transparent-strip" | "gray-strip" | "gradient-strip" | "salmon-strip" | "gray-strip-vertical" | "gradient-strip-vertical" | "salmon-strip-vertical";
444
+ interface CreditCardProps extends React$1.ComponentProps<"div"> {
445
+ type?: CreditCardType;
446
+ company?: React$1.ReactNode;
447
+ cardNumber?: string;
448
+ cardHolder?: string;
449
+ cardExpiration?: string;
450
+ /** Rendered width in px — the height follows the 316 × 190 aspect ratio. */
451
+ width?: number;
452
+ }
453
+ declare function CreditCard({ className, style, type, company, cardNumber, cardHolder, cardExpiration, width, ...props }: CreditCardProps): React$1.JSX.Element;
454
+
455
+ declare function Drawer(props: React$1.ComponentProps<typeof Drawer$1.Root>): React$1.JSX.Element;
456
+ declare function DrawerTrigger(props: React$1.ComponentProps<typeof Drawer$1.Trigger>): React$1.JSX.Element;
457
+ declare function DrawerPortal(props: React$1.ComponentProps<typeof Drawer$1.Portal>): React$1.JSX.Element;
458
+ declare function DrawerClose(props: React$1.ComponentProps<typeof Drawer$1.Close>): React$1.JSX.Element;
459
+ declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): React$1.JSX.Element;
460
+ declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): React$1.JSX.Element;
461
+ declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
462
+ declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
463
+ declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): React$1.JSX.Element;
464
+ declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): React$1.JSX.Element;
465
+
466
+ declare function ContextMenu({ ...props }: ContextMenu$1.Root.Props): React$1.JSX.Element;
467
+ declare function ContextMenuPortal({ ...props }: ContextMenu$1.Portal.Props): React$1.JSX.Element;
468
+ declare function ContextMenuTrigger({ className, ...props }: ContextMenu$1.Trigger.Props): React$1.JSX.Element;
469
+ declare function ContextMenuContent({ className, align, alignOffset, side, sideOffset, ...props }: ContextMenu$1.Popup.Props & Pick<ContextMenu$1.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): React$1.JSX.Element;
470
+ declare function ContextMenuGroup({ ...props }: ContextMenu$1.Group.Props): React$1.JSX.Element;
471
+ declare function ContextMenuLabel({ className, inset, ...props }: ContextMenu$1.GroupLabel.Props & {
472
+ inset?: boolean;
473
+ }): React$1.JSX.Element;
474
+ declare function ContextMenuItem({ className, inset, variant, ...props }: ContextMenu$1.Item.Props & {
475
+ inset?: boolean;
476
+ variant?: "default" | "destructive";
477
+ }): React$1.JSX.Element;
478
+ declare function ContextMenuSub({ ...props }: ContextMenu$1.SubmenuRoot.Props): React$1.JSX.Element;
479
+ declare function ContextMenuSubTrigger({ className, inset, children, ...props }: ContextMenu$1.SubmenuTrigger.Props & {
480
+ inset?: boolean;
481
+ }): React$1.JSX.Element;
482
+ declare function ContextMenuSubContent({ ...props }: React$1.ComponentProps<typeof ContextMenuContent>): React$1.JSX.Element;
483
+ declare function ContextMenuCheckboxItem({ className, children, checked, inset, ...props }: ContextMenu$1.CheckboxItem.Props & {
484
+ inset?: boolean;
485
+ }): React$1.JSX.Element;
486
+ declare function ContextMenuRadioGroup({ ...props }: ContextMenu$1.RadioGroup.Props): React$1.JSX.Element;
487
+ declare function ContextMenuRadioItem({ className, children, inset, ...props }: ContextMenu$1.RadioItem.Props & {
488
+ inset?: boolean;
489
+ }): React$1.JSX.Element;
490
+ declare function ContextMenuSeparator({ className, ...props }: ContextMenu$1.Separator.Props): React$1.JSX.Element;
491
+ declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
492
+
493
+ declare const DialogCreateHandle: typeof Dialog$1.createHandle;
494
+ declare const Dialog: typeof Dialog$1.Root;
495
+ declare const DialogPortal: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.DialogPortalProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
496
+ declare function DialogTrigger(props: Dialog$1.Trigger.Props): React$1.JSX.Element;
497
+ declare function DialogClose(props: Dialog$1.Close.Props): React$1.JSX.Element;
498
+ declare function DialogBackdrop({ className, ...props }: Dialog$1.Backdrop.Props): React$1.JSX.Element;
499
+ declare function DialogViewport({ className, ...props }: Dialog$1.Viewport.Props): React$1.JSX.Element;
500
+ declare function DialogPopup({ className, children, showCloseButton, bottomStickOnMobile, ...props }: Dialog$1.Popup.Props & {
501
+ showCloseButton?: boolean;
502
+ bottomStickOnMobile?: boolean;
503
+ }): React$1.JSX.Element;
504
+ declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
505
+ declare function DialogFooter({ className, variant, ...props }: React.ComponentProps<"div"> & {
506
+ variant?: "default" | "bare";
507
+ }): React$1.JSX.Element;
508
+ declare function DialogTitle({ className, ...props }: Dialog$1.Title.Props): React$1.JSX.Element;
509
+ declare function DialogDescription({ className, ...props }: Dialog$1.Description.Props): React$1.JSX.Element;
510
+ declare function DialogPanel({ className, scrollFade, ...props }: React.ComponentProps<"div"> & {
511
+ scrollFade?: boolean;
512
+ }): React$1.JSX.Element;
513
+
514
+ declare function Empty({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
515
+ declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
516
+ declare const emptyMediaVariants: (props?: ({
517
+ variant?: "default" | "icon" | null | undefined;
518
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
519
+ declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): React$1.JSX.Element;
520
+ declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
521
+ declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): React$1.JSX.Element;
522
+ declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
523
+
524
+ declare const featuredIconVariants: (props?: ({
525
+ color?: "error" | "success" | "warning" | "gray" | "brand" | null | undefined;
526
+ size?: "lg" | "sm" | "xl" | "md" | null | undefined;
527
+ theme?: "dark" | "light" | "outline" | "modern" | "modern-neue" | "gradient" | null | undefined;
528
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
529
+ type FeaturedIconTheme = NonNullable<VariantProps<typeof featuredIconVariants>["theme"]>;
530
+ type FeaturedIconColor = NonNullable<VariantProps<typeof featuredIconVariants>["color"]>;
531
+ interface FeaturedIconProps extends Omit<React$1.ComponentProps<"span">, "color"> {
532
+ theme?: FeaturedIconTheme;
533
+ color?: FeaturedIconColor;
534
+ size?: VariantProps<typeof featuredIconVariants>["size"];
535
+ /** Icon component rendered inside (e.g. a lucide icon). Or pass children. */
536
+ icon?: React$1.ElementType;
537
+ }
538
+ declare function FeaturedIcon({ className, theme, color, size, icon: Icon, children, ...props }: FeaturedIconProps): React$1.JSX.Element;
539
+
540
+ declare function Field({ className, ...props }: Field$1.Root.Props): React$1.JSX.Element;
541
+ declare function FieldLabel({ className, ...props }: Field$1.Label.Props): React$1.JSX.Element;
542
+ declare function FieldItem({ className, ...props }: Field$1.Item.Props): React$1.JSX.Element;
543
+ declare function FieldDescription({ className, ...props }: Field$1.Description.Props): React$1.JSX.Element;
544
+ declare function FieldError({ className, ...props }: Field$1.Error.Props): React$1.JSX.Element;
545
+ declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
546
+ declare const FieldControl: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.FieldControlProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
547
+ declare const FieldValidity: React$1.FC<_base_ui_react.FieldValidityProps>;
548
+
549
+ declare function Fieldset({ className, ...props }: Fieldset$1.Root.Props): React$1.JSX.Element;
550
+ declare function FieldsetLegend({ className, ...props }: Fieldset$1.Legend.Props): React$1.JSX.Element;
551
+
552
+ declare function Form({ className, ...props }: Form$1.Props): React$1.JSX.Element;
553
+
554
+ declare function Frame({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
555
+ declare function FramePanel({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
556
+ declare function FrameHeader({ className, ...props }: React$1.ComponentProps<"header">): React$1.JSX.Element;
557
+ declare function FrameTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
558
+ declare function FrameDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
559
+ declare function FrameFooter({ className, ...props }: React$1.ComponentProps<"footer">): React$1.JSX.Element;
560
+
561
+ interface ErrorOrEmptyStateProps extends Omit<React__default.ComponentProps<"div">, "title"> {
562
+ title?: React__default.ReactNode;
563
+ description?: React__default.ReactNode;
564
+ actions?: React__default.ReactNode;
565
+ media?: React__default.ReactNode;
566
+ mediaVariant?: "icon" | "default";
567
+ compact?: boolean;
568
+ }
569
+ declare function ErrorOrEmptyState({ title, description, actions, className, media, mediaVariant, compact, ...props }: ErrorOrEmptyStateProps): React__default.JSX.Element;
570
+ type ErrorTemplateProps = Omit<ErrorOrEmptyStateProps, "image" | "title" | "description"> & {
571
+ mediaClassName?: string;
572
+ };
573
+ declare function NotFoundErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
574
+ declare function UnauthorizedErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
575
+ declare function ForbiddenErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
576
+ declare function InternalServerErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
577
+ declare function OfflineErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
578
+ declare function GeneralErrorState({ mediaClassName, ...props }: ErrorTemplateProps): React__default.JSX.Element;
579
+
580
+ declare function Separator({ className, orientation, ...props }: Separator$1.Props): React$1.JSX.Element;
581
+
582
+ declare const groupVariants: (props?: ({
583
+ orientation?: "horizontal" | "vertical" | null | undefined;
584
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
585
+ declare function Group({ className, orientation, children, ...props }: {
586
+ className?: string;
587
+ orientation?: VariantProps<typeof groupVariants>["orientation"];
588
+ children: React$1.ReactNode;
589
+ } & React$1.ComponentProps<"div">): React$1.JSX.Element;
590
+ declare function GroupText({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
591
+ declare function GroupSeparator({ className, orientation, ...props }: {
592
+ className?: string;
593
+ } & React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
594
+
595
+ declare const HorizontalScrollFader: React__default.ForwardRefExoticComponent<{
596
+ asChild?: boolean;
597
+ children?: React__default.ReactNode;
598
+ } & Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
599
+ declare const HorizontalScrollFaderContent: React__default.ForwardRefExoticComponent<{
600
+ asChild?: boolean;
601
+ children?: React__default.ReactNode;
602
+ } & Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
603
+ declare const HorizontalScrollFaderLeftScroller: React__default.ForwardRefExoticComponent<{
604
+ asChild?: boolean;
605
+ children?: React__default.ReactNode;
606
+ } & Omit<React__default.DetailedHTMLProps<React__default.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
607
+ declare const HorizontalScrollFaderRightScroller: React__default.ForwardRefExoticComponent<{
608
+ asChild?: boolean;
609
+ children?: React__default.ReactNode;
610
+ } & Omit<React__default.DetailedHTMLProps<React__default.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
611
+
612
+ type TextareaProps = React$1.ComponentProps<"textarea"> & {
613
+ size?: "sm" | "default" | "lg" | number;
614
+ unstyled?: boolean;
615
+ };
616
+ declare function Textarea({ className, size, unstyled, ...props }: TextareaProps): React$1.JSX.Element;
617
+
618
+ declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
619
+ declare const inputGroupAddonVariants: (props?: ({
620
+ align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
621
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
622
+ declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): React$1.JSX.Element;
623
+ declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
624
+ declare function InputGroupInput({ className, ...props }: InputProps): React$1.JSX.Element;
625
+ declare function InputGroupTextarea({ className, ...props }: TextareaProps): React$1.JSX.Element;
626
+
627
+ type InputOTPProps = React$1.ComponentProps<typeof OTPInput>;
628
+ declare function InputOTP({ className, containerClassName, inputMode, pattern, ...props }: InputOTPProps): React$1.JSX.Element;
629
+ declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
630
+ declare const inputOTPSlotVariants: (props?: ({
631
+ size?: "default" | "lg" | "sm" | null | undefined;
632
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
633
+ declare function InputOTPSlot({ index, className, size, ...props }: React$1.ComponentProps<"div"> & {
634
+ index: number;
635
+ } & VariantProps<typeof inputOTPSlotVariants>): React$1.JSX.Element;
636
+ declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
637
+
638
+ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
639
+ declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
640
+ declare const itemVariants: (props?: ({
641
+ size?: "default" | "sm" | null | undefined;
642
+ variant?: "default" | "outline" | "muted" | null | undefined;
643
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
644
+ interface ItemProps extends useRender.ComponentProps<"div"> {
645
+ variant?: VariantProps<typeof itemVariants>["variant"];
646
+ size?: VariantProps<typeof itemVariants>["size"];
647
+ }
648
+ declare function Item({ className, variant, size, render, ...props }: ItemProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
649
+ declare const itemMediaVariants: (props?: ({
650
+ variant?: "image" | "default" | "icon" | null | undefined;
651
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
652
+ declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): React$1.JSX.Element;
653
+ declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
654
+ declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
655
+ declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): React$1.JSX.Element;
656
+ declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
657
+ declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
658
+ declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
659
+
660
+ declare function Kbd({ className, ...props }: React$1.ComponentProps<"kbd">): React$1.JSX.Element;
661
+ declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"kbd">): React$1.JSX.Element;
662
+
663
+ declare function Label({ className, render, ...props }: useRender.ComponentProps<"label">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
664
+
665
+ declare const MenuCreateHandle: typeof Menu$1.createHandle;
666
+ declare const Menu: typeof Menu$1.Root;
667
+ declare const MenuPortal: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.ContextMenuPortalProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
668
+ declare function MenuTrigger(props: Menu$1.Trigger.Props): React$1.JSX.Element;
669
+ declare function MenuPopup({ children, className, sideOffset, align, alignOffset, side, ...props }: Menu$1.Popup.Props & {
670
+ align?: Menu$1.Positioner.Props["align"];
671
+ sideOffset?: Menu$1.Positioner.Props["sideOffset"];
672
+ alignOffset?: Menu$1.Positioner.Props["alignOffset"];
673
+ side?: Menu$1.Positioner.Props["side"];
674
+ }): React$1.JSX.Element;
675
+ declare function MenuGroup(props: Menu$1.Group.Props): React$1.JSX.Element;
676
+ declare function MenuItem({ className, inset, variant, ...props }: Menu$1.Item.Props & {
677
+ inset?: boolean;
678
+ variant?: "default" | "destructive";
679
+ }): React$1.JSX.Element;
680
+ declare function MenuCheckboxItem({ className, children, checked, variant, ...props }: Menu$1.CheckboxItem.Props & {
681
+ variant?: "default" | "switch";
682
+ }): React$1.JSX.Element;
683
+ declare function MenuRadioGroup(props: Menu$1.RadioGroup.Props): React$1.JSX.Element;
684
+ declare function MenuRadioItem({ className, children, ...props }: Menu$1.RadioItem.Props): React$1.JSX.Element;
685
+ declare function MenuGroupLabel({ className, inset, ...props }: Menu$1.GroupLabel.Props & {
686
+ inset?: boolean;
687
+ }): React$1.JSX.Element;
688
+ declare function MenuSeparator({ className, ...props }: Menu$1.Separator.Props): React$1.JSX.Element;
689
+ declare function MenuShortcut({ className, ...props }: React$1.ComponentProps<"kbd">): React$1.JSX.Element;
690
+ declare function MenuSub(props: Menu$1.SubmenuRoot.Props): React$1.JSX.Element;
691
+ declare function MenuSubTrigger({ className, inset, children, ...props }: Menu$1.SubmenuTrigger.Props & {
692
+ inset?: boolean;
693
+ }): React$1.JSX.Element;
694
+ declare function MenuSubPopup({ className, sideOffset, alignOffset, align, ...props }: Menu$1.Popup.Props & {
695
+ align?: Menu$1.Positioner.Props["align"];
696
+ sideOffset?: Menu$1.Positioner.Props["sideOffset"];
697
+ alignOffset?: Menu$1.Positioner.Props["alignOffset"];
698
+ }): React$1.JSX.Element;
699
+
700
+ declare function Menubar({ className, ...props }: MenubarProps): React$1.JSX.Element;
701
+ declare function MenubarMenu(props: Menu$1.Root.Props): React$1.JSX.Element;
702
+ declare function MenubarTrigger({ className, ...props }: Menu$1.Trigger.Props): React$1.JSX.Element;
703
+ declare function MenubarContent({ align, sideOffset, ...props }: React$1.ComponentProps<typeof MenuPopup>): React$1.JSX.Element;
704
+
705
+ declare function Meter({ className, children, ...props }: Meter$1.Root.Props): React$1.JSX.Element;
706
+ declare function MeterLabel({ className, ...props }: Meter$1.Label.Props): React$1.JSX.Element;
707
+ declare function MeterTrack({ className, ...props }: Meter$1.Track.Props): React$1.JSX.Element;
708
+ declare function MeterIndicator({ className, ...props }: Meter$1.Indicator.Props): React$1.JSX.Element;
709
+ declare function MeterValue({ className, ...props }: Meter$1.Value.Props): React$1.JSX.Element;
710
+
711
+ interface MultiSelectItem {
712
+ label: string;
713
+ value: string;
714
+ disabled?: boolean;
715
+ }
716
+ interface MultiSelectProps {
717
+ items: MultiSelectItem[];
718
+ /** Controlled selected values. */
719
+ value?: string[];
720
+ /** Uncontrolled initial selected values. */
721
+ defaultValue?: string[];
722
+ onValueChange?: (value: string[]) => void;
723
+ size?: "sm" | "default" | "lg";
724
+ placeholder?: React$1.ReactNode;
725
+ /** Extra context rendered next to the selected count, e.g. "of 12 users". */
726
+ supportingText?: React$1.ReactNode;
727
+ /** Formats the trigger text from the selected count. Defaults to `${count} selected`. */
728
+ selectedCountFormatter?: (count: number) => React$1.ReactNode;
729
+ showSearch?: boolean;
730
+ searchPlaceholder?: string;
731
+ showFooter?: boolean;
732
+ selectAllLabel?: React$1.ReactNode;
733
+ resetLabel?: React$1.ReactNode;
734
+ emptyStateTitle?: React$1.ReactNode;
735
+ emptyStateDescription?: React$1.ReactNode;
736
+ disabled?: boolean;
737
+ name?: string;
738
+ required?: boolean;
739
+ id?: string;
740
+ /** Trigger class name. */
741
+ className?: string;
742
+ popupClassName?: string;
743
+ sideOffset?: Select$1.Positioner.Props["sideOffset"];
744
+ }
745
+ declare function MultiSelect({ items, value: valueProp, defaultValue, onValueChange, size, placeholder, supportingText, selectedCountFormatter, showSearch, searchPlaceholder, showFooter, selectAllLabel, resetLabel, emptyStateTitle, emptyStateDescription, disabled, name, required, id, className, popupClassName, sideOffset, }: MultiSelectProps): React$1.JSX.Element;
746
+
747
+ declare function NavigationMenu({ className, children, ...props }: NavigationMenu$1.Root.Props): React$1.JSX.Element;
748
+ declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.List>): React$1.JSX.Element;
749
+ declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Item>): React$1.JSX.Element;
750
+ declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
751
+ declare function NavigationMenuTrigger({ className, children, ...props }: NavigationMenu$1.Trigger.Props): React$1.JSX.Element;
752
+ declare function NavigationMenuContent({ className, ...props }: NavigationMenu$1.Content.Props): React$1.JSX.Element;
753
+ declare function NavigationMenuLink({ className, ...props }: NavigationMenu$1.Link.Props): React$1.JSX.Element;
754
+
755
+ declare function NumberField({ id, className, size, ...props }: NumberField$1.Root.Props & {
756
+ size?: "sm" | "default" | "lg";
757
+ }): React$1.JSX.Element;
758
+ declare function NumberFieldGroup({ className, ...props }: NumberField$1.Group.Props): React$1.JSX.Element;
759
+ declare function NumberFieldDecrement({ className, ...props }: NumberField$1.Decrement.Props): React$1.JSX.Element;
760
+ declare function NumberFieldIncrement({ className, ...props }: NumberField$1.Increment.Props): React$1.JSX.Element;
761
+ declare function NumberFieldInput({ className, ...props }: NumberField$1.Input.Props): React$1.JSX.Element;
762
+ declare function NumberFieldScrubArea({ className, label, ...props }: NumberField$1.ScrubArea.Props & {
763
+ label: string;
764
+ }): React$1.JSX.Element;
765
+
766
+ declare function Pagination({ className, ...props }: React$1.ComponentProps<"nav">): React$1.JSX.Element;
767
+ declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): React$1.JSX.Element;
768
+ declare function PaginationItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
769
+ type PaginationLinkProps = {
770
+ isActive?: boolean;
771
+ disabled?: boolean;
772
+ size?: React$1.ComponentProps<typeof Button>["size"];
773
+ } & useRender.ComponentProps<"a">;
774
+ declare function PaginationLink({ className, isActive, disabled, size, render, ...props }: PaginationLinkProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
775
+ declare function PaginationPrevious({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): React$1.JSX.Element;
776
+ declare function PaginationNext({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): React$1.JSX.Element;
777
+ declare function PaginationEllipsis({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
778
+
779
+ declare function PaginationControls(props: {
780
+ page: number;
781
+ pageCount: number;
782
+ renderPageLink: (page: number) => PaginationLinkProps["render"];
783
+ }): React$1.JSX.Element | null;
784
+
785
+ declare const PopoverCreateHandle: typeof Popover$1.createHandle;
786
+ declare const Popover: typeof Popover$1.Root;
787
+ declare function PopoverTrigger({ className, children, ...props }: Popover$1.Trigger.Props): React$1.JSX.Element;
788
+ declare function PopoverPopup({ children, className, side, align, sideOffset, alignOffset, tooltipStyle, anchor, ...props }: Popover$1.Popup.Props & {
789
+ side?: Popover$1.Positioner.Props["side"];
790
+ align?: Popover$1.Positioner.Props["align"];
791
+ sideOffset?: Popover$1.Positioner.Props["sideOffset"];
792
+ alignOffset?: Popover$1.Positioner.Props["alignOffset"];
793
+ tooltipStyle?: boolean;
794
+ anchor?: Popover$1.Positioner.Props["anchor"];
795
+ }): React$1.JSX.Element;
796
+ declare function PopoverClose({ ...props }: Popover$1.Close.Props): React$1.JSX.Element;
797
+ declare function PopoverTitle({ className, ...props }: Popover$1.Title.Props): React$1.JSX.Element;
798
+ declare function PopoverDescription({ className, ...props }: Popover$1.Description.Props): React$1.JSX.Element;
799
+
800
+ declare const PreviewCard: typeof PreviewCard$1.Root;
801
+ declare function PreviewCardTrigger({ ...props }: PreviewCard$1.Trigger.Props): React$1.JSX.Element;
802
+ declare function PreviewCardPopup({ className, children, align, sideOffset, ...props }: PreviewCard$1.Popup.Props & {
803
+ align?: PreviewCard$1.Positioner.Props["align"];
804
+ sideOffset?: PreviewCard$1.Positioner.Props["sideOffset"];
805
+ }): React$1.JSX.Element;
806
+
807
+ declare function Progress({ className, children, ...props }: Progress$1.Root.Props): React$1.JSX.Element;
808
+ declare function ProgressLabel({ className, ...props }: Progress$1.Label.Props): React$1.JSX.Element;
809
+ declare function ProgressTrack({ className, ...props }: Progress$1.Track.Props): React$1.JSX.Element;
810
+ declare function ProgressIndicator({ className, ...props }: Progress$1.Indicator.Props): React$1.JSX.Element;
811
+ declare function ProgressValue({ className, ...props }: Progress$1.Value.Props): React$1.JSX.Element;
812
+ /**
813
+ * A tooltip-like value bubble that floats above or below the track,
814
+ * following the progress percentage. Render it next to a ProgressTrack
815
+ * inside a `relative` wrapper.
816
+ */
817
+ declare function ProgressFloatingValue({ className, side, value, max, children, style, ...props }: React$1.ComponentProps<"div"> & {
818
+ side?: "top" | "bottom";
819
+ value: number;
820
+ max?: number;
821
+ }): React$1.JSX.Element;
822
+ declare const progressCircleSizes: {
823
+ readonly sm: {
824
+ readonly label: "text-[0.625rem]";
825
+ readonly px: 64;
826
+ readonly stroke: 6;
827
+ readonly value: "text-sm";
828
+ };
829
+ readonly md: {
830
+ readonly label: "text-xs";
831
+ readonly px: 120;
832
+ readonly stroke: 10;
833
+ readonly value: "text-2xl";
834
+ };
835
+ readonly lg: {
836
+ readonly label: "text-sm";
837
+ readonly px: 160;
838
+ readonly stroke: 12;
839
+ readonly value: "text-3xl";
840
+ };
841
+ };
842
+ type ProgressCircleSize = keyof typeof progressCircleSizes;
843
+ interface ProgressCircleProps extends Progress$1.Root.Props {
844
+ size?: ProgressCircleSize;
845
+ /** A short caption rendered above the value, inside the circle. */
846
+ label?: React$1.ReactNode;
847
+ /** Hide the centered percentage. */
848
+ showValue?: boolean;
849
+ }
850
+ /** A circular progress ring with an optional centered value and label. */
851
+ declare function ProgressCircle({ className, size, label, showValue, value, max, ...props }: ProgressCircleProps): React$1.JSX.Element;
852
+ /** A half-circle (gauge) progress arc with an optional value and label. */
853
+ declare function ProgressHalfCircle({ className, size, label, showValue, value, max, ...props }: ProgressCircleProps): React$1.JSX.Element;
854
+
855
+ declare const qrCodeVariants: (props?: ({
856
+ size?: "lg" | "sm" | "md" | null | undefined;
857
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
858
+ interface QRCodeProps extends Omit<React$1.ComponentProps<"div">, "children">, VariantProps<typeof qrCodeVariants> {
859
+ /** The text or URL encoded in the QR code. */
860
+ value: string;
861
+ /**
862
+ * Extra qr-code-styling options merged over the themed defaults — e.g. a
863
+ * center image, custom dot colors or shapes. See the qr-code-styling docs.
864
+ */
865
+ options?: Partial<Options>;
866
+ }
867
+ /**
868
+ * A themeable QR code rendered with qr-code-styling. Dots follow the
869
+ * foreground color (and re-tint when the theme flips) unless overridden
870
+ * via `options`.
871
+ */
872
+ declare function QRCode({ className, size, value, options, ...props }: QRCodeProps): React$1.JSX.Element;
873
+ /**
874
+ * An animated scan-line overlay for a QR code. Render it inside a `relative`
875
+ * wrapper around the `<QRCode />`.
876
+ */
877
+ declare function QRCodeGradientScan({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
878
+
879
+ declare function RadioGroup({ className, ...props }: RadioGroup$1.Props): React$1.JSX.Element;
880
+ declare const radioSizes: {
881
+ readonly sm: {
882
+ readonly box: "size-4.5 sm:size-4";
883
+ readonly indicator: "size-4.5 sm:size-4";
884
+ readonly dot: "before:size-2 sm:before:size-1.5";
885
+ readonly check: "size-3.5 sm:size-3";
886
+ };
887
+ readonly md: {
888
+ readonly box: "size-5";
889
+ readonly indicator: "size-5";
890
+ readonly dot: "before:size-2";
891
+ readonly check: "size-4";
892
+ };
893
+ };
894
+ interface RadioProps extends Radio$1.Root.Props {
895
+ /** Visual size of the radio. Defaults to "sm". */
896
+ size?: keyof typeof radioSizes;
897
+ /** Indicator style: the classic dot or a checkbox-style tick. Defaults to "dot". */
898
+ variant?: "dot" | "check";
899
+ }
900
+ declare function Radio({ className, size, variant, ...props }: RadioProps): React$1.JSX.Element;
901
+
902
+ declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): React$1.JSX.Element;
903
+ declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): React$1.JSX.Element;
904
+ declare function ResizableHandle({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelResizeHandle> & {
905
+ withHandle?: boolean;
906
+ }): React$1.JSX.Element;
907
+
908
+ declare function ScrollArea({ className, children, scrollFade, scrollbarGutter, wheelToHorizontal, smooth, viewportClassName, ...props }: ScrollArea$1.Root.Props & {
909
+ scrollFade?: boolean;
910
+ scrollbarGutter?: boolean;
911
+ /**
912
+ * Translate vertical mouse-wheel scrolling into (eased) horizontal scrolling
913
+ * while the pointer is over the viewport. The page only scrolls once this
914
+ * element reaches its horizontal start/end.
915
+ */
916
+ wheelToHorizontal?: boolean;
917
+ /** Eased, momentum-style vertical wheel scrolling. */
918
+ smooth?: boolean;
919
+ viewportClassName?: string;
920
+ }): React$1.JSX.Element;
921
+ declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): React$1.JSX.Element;
922
+
923
+ type AsChildProps<T extends keyof React.JSX.IntrinsicElements> = {
924
+ asChild?: boolean;
925
+ children?: React.ReactNode;
926
+ } & React.PropsWithoutRef<React.JSX.IntrinsicElements[T]>;
927
+ type OmitUnknown<T> = {
928
+ [K in keyof T as unknown extends T[K] ? never : K]: T[K];
929
+ };
930
+ type TailOptional<P extends any[]> = P extends [...infer H, infer T] ? [...H] | [...H, T] : never[];
931
+ type RequiredSubset<T, K extends keyof T> = Required<Pick<T, K>> & Omit<T, K>;
932
+ type Tail<P extends any[], H extends any[]> = P extends H ? void : P extends [...H, infer T] ? T : void;
933
+ type NotNullValues<T> = {
934
+ [K in keyof T]: Exclude<T[K], null>;
935
+ };
936
+
937
+ declare const LeftScroller: ({ className, asChild, ...props }: AsChildProps<"button">) => React$1.JSX.Element;
938
+ declare const RightScroller: ({ className, asChild, ...props }: AsChildProps<"button">) => React$1.JSX.Element;
939
+
940
+ declare const sectionHeaderTitleVariants: (props?: ({
941
+ size?: "default" | "lg" | "sm" | null | undefined;
942
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
943
+ declare const sectionHeaderDescriptionVariants: (props?: ({
944
+ size?: "default" | "lg" | "sm" | null | undefined;
945
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
946
+ interface SectionHeaderProps extends Omit<React$1.ComponentProps<"div">, "title">, VariantProps<typeof sectionHeaderTitleVariants> {
947
+ title?: React$1.ReactNode;
948
+ description?: React$1.ReactNode;
949
+ /** Right-aligned actions (buttons, counts, menus). */
950
+ actions?: React$1.ReactNode;
951
+ /** A leading node — e.g. a `<FeaturedIcon />` or a count badge. */
952
+ icon?: React$1.ReactNode;
953
+ /** Adds a bottom hairline + padding, so the header sits above a list/grid. */
954
+ border?: boolean;
955
+ }
956
+ /**
957
+ * A titled section heading: title + optional description on the left, optional
958
+ * actions on the right, with an optional leading icon. One altitude below the
959
+ * page-level `DashboardHeader` — use it to introduce a card body, a list, or a
960
+ * settings group.
961
+ */
962
+ declare function SectionHeader({ className, title, description, actions, icon, size, border, children, ...props }: SectionHeaderProps): React$1.JSX.Element;
963
+
964
+ interface SmoothWheelOptions {
965
+ /** Turn the behaviour on/off (so it can be called unconditionally). */
966
+ enabled?: boolean;
967
+ /** Translate vertical wheel movement into horizontal scrolling. */
968
+ horizontal?: boolean;
969
+ /** Scales the wheel delta — lower feels slower/heavier. Default 0.8. */
970
+ multiplier?: number;
971
+ /** Lerp factor toward the target each frame (0–1). Lower = smoother. */
972
+ ease?: number;
973
+ }
974
+ /**
975
+ * Eased, momentum-style wheel scrolling for any scrollable element. Instead of
976
+ * jumping `scrollTop`/`scrollLeft` by the raw wheel delta (which feels fast and
977
+ * abrupt), it animates toward an accumulated target with `requestAnimationFrame`.
978
+ * At the start/end edge it lets the wheel bubble so the page can still scroll.
979
+ */
980
+ declare function useSmoothWheel(ref: React$1.RefObject<HTMLElement | null>, { enabled, horizontal, multiplier, ease, }?: SmoothWheelOptions): void;
981
+ interface SmoothScrollProps extends React$1.ComponentProps<"div"> {
982
+ /** Scroll horizontally (vertical wheel is translated to horizontal). */
983
+ horizontal?: boolean;
984
+ /** Scales the wheel delta — lower feels slower/heavier. Default 0.8. */
985
+ multiplier?: number;
986
+ /** Lerp factor toward the target each frame (0–1). Lower = smoother. */
987
+ ease?: number;
988
+ }
989
+ /**
990
+ * A scroll container with eased, momentum-style wheel scrolling. Drop any
991
+ * overflowing content inside; pass `horizontal` for a row that scrolls
992
+ * smoothly with a normal mouse wheel.
993
+ */
994
+ declare function SmoothScroll({ className, children, horizontal, multiplier, ease, ...props }: SmoothScrollProps): React$1.JSX.Element;
995
+
996
+ declare const socialButtonVariants: (props?: ({
997
+ iconOnly?: boolean | null | undefined;
998
+ theme?: "color" | "gray" | "brand" | null | undefined;
999
+ provider?: "apple" | "dribbble" | "facebook" | "figma" | "google" | "twitter" | null | undefined;
1000
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1001
+ interface SocialLogoProps extends React$1.ComponentProps<"svg"> {
1002
+ /** Render the provider's full-color logo instead of currentColor. */
1003
+ colored?: boolean;
1004
+ }
1005
+ declare function GoogleLogoIcon({ colored, ...props }: SocialLogoProps): React$1.JSX.Element;
1006
+ declare function FacebookLogoIcon({ colored, ...props }: SocialLogoProps): React$1.JSX.Element;
1007
+ declare function XLogoIcon({ colored: _colored, ...props }: SocialLogoProps): React$1.JSX.Element;
1008
+ declare function FigmaLogoIcon({ colored, ...props }: SocialLogoProps): React$1.JSX.Element;
1009
+ declare function DribbbleLogoIcon({ colored, ...props }: SocialLogoProps): React$1.JSX.Element;
1010
+ type SocialButtonProvider = "google" | "facebook" | "apple" | "twitter" | "figma" | "dribbble";
1011
+ interface SocialButtonProps extends useRender.ComponentProps<"button"> {
1012
+ /** Which provider to render: google, facebook, apple, twitter, figma or dribbble. */
1013
+ provider: SocialButtonProvider;
1014
+ /** brand (provider-filled), color (outline + full-color logo) or gray (tonal). */
1015
+ theme?: VariantProps<typeof socialButtonVariants>["theme"];
1016
+ /** Render a square button with the logo only. */
1017
+ iconOnly?: boolean;
1018
+ }
1019
+ declare function SocialButton({ className, provider, theme, iconOnly, render, children, ...props }: SocialButtonProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1020
+
1021
+ type Orientation = "horizontal" | "vertical";
1022
+ declare function Stepper({ value, orientation, className, ...props }: React$1.ComponentProps<"div"> & {
1023
+ /** 1-based index of the active step. */
1024
+ value?: number;
1025
+ orientation?: Orientation;
1026
+ }): React$1.JSX.Element;
1027
+ declare function StepperItem({ step, completed, className, ...props }: React$1.ComponentProps<"div"> & {
1028
+ step: number;
1029
+ completed?: boolean;
1030
+ }): React$1.JSX.Element;
1031
+ declare function StepperTrigger({ className, ...props }: React$1.ComponentProps<"button">): React$1.JSX.Element;
1032
+ declare function StepperIndicator({ className, children, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
1033
+ declare function StepperTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1034
+ declare function StepperDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1035
+ declare function StepperSeparator({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1036
+
1037
+ declare const Select: typeof Select$1.Root;
1038
+ declare function SelectTrigger({ className, size, children, ...props }: Select$1.Trigger.Props & {
1039
+ size?: "sm" | "default" | "lg";
1040
+ }): React$1.JSX.Element;
1041
+ declare function SelectValue({ className, ...props }: Select$1.Value.Props): React$1.JSX.Element;
1042
+ declare function SelectPopup({ className, children, sideOffset, alignItemWithTrigger, ...props }: Select$1.Popup.Props & {
1043
+ sideOffset?: Select$1.Positioner.Props["sideOffset"];
1044
+ alignItemWithTrigger?: Select$1.Positioner.Props["alignItemWithTrigger"];
1045
+ }): React$1.JSX.Element;
1046
+ declare function SelectItem({ className, children, ...props }: Select$1.Item.Props): React$1.JSX.Element;
1047
+ declare function SelectSeparator({ className, ...props }: Select$1.Separator.Props): React$1.JSX.Element;
1048
+ declare function SelectGroup(props: Select$1.Group.Props): React$1.JSX.Element;
1049
+ declare function SelectGroupLabel(props: Select$1.GroupLabel.Props): React$1.JSX.Element;
1050
+
1051
+ declare const Sheet: typeof Dialog$1.Root;
1052
+ declare const SheetPortal: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.DialogPortalProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1053
+ declare function SheetTrigger(props: Dialog$1.Trigger.Props): React$1.JSX.Element;
1054
+ declare function SheetClose(props: Dialog$1.Close.Props): React$1.JSX.Element;
1055
+ declare function SheetBackdrop({ className, ...props }: Dialog$1.Backdrop.Props): React$1.JSX.Element;
1056
+ declare const sheetViewportVariants: (props?: ({
1057
+ side?: "top" | "left" | "right" | "bottom" | null | undefined;
1058
+ variant?: "default" | "inset" | null | undefined;
1059
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1060
+ declare function SheetViewport({ className, side, variant, ...props }: Dialog$1.Viewport.Props & {
1061
+ side?: "right" | "left" | "top" | "bottom";
1062
+ variant?: "default" | "inset";
1063
+ }): React$1.JSX.Element;
1064
+ declare const sheetPopupVariants: (props?: ({
1065
+ side?: "top" | "left" | "right" | "bottom" | null | undefined;
1066
+ variant?: "default" | "inset" | null | undefined;
1067
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1068
+ declare function SheetPopup({ className, children, showCloseButton, side, variant, ...props }: Dialog$1.Popup.Props & {
1069
+ showCloseButton?: boolean;
1070
+ side?: "right" | "left" | "top" | "bottom";
1071
+ variant?: "default" | "inset";
1072
+ }): React$1.JSX.Element;
1073
+ declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
1074
+ declare function SheetFooter({ className, variant, ...props }: React.ComponentProps<"div"> & {
1075
+ variant?: "default" | "bare";
1076
+ }): React$1.JSX.Element;
1077
+ declare function SheetTitle({ className, ...props }: Dialog$1.Title.Props): React$1.JSX.Element;
1078
+ declare function SheetDescription({ className, ...props }: Dialog$1.Description.Props): React$1.JSX.Element;
1079
+ declare function SheetPanel({ className, scrollFade, ...props }: React.ComponentProps<"div"> & {
1080
+ scrollFade?: boolean;
1081
+ }): React$1.JSX.Element;
1082
+
1083
+ declare const TooltipCreateHandle: typeof Tooltip$1.createHandle;
1084
+ declare const TooltipProvider: React$1.FC<_base_ui_react.TooltipProviderProps>;
1085
+ declare const Tooltip: typeof Tooltip$1.Root;
1086
+ declare function TooltipTrigger(props: Tooltip$1.Trigger.Props): React$1.JSX.Element;
1087
+ declare function TooltipTitle({ className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement>): React$1.JSX.Element;
1088
+ declare function TooltipDescription({ className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement>): React$1.JSX.Element;
1089
+ declare function TooltipPopup({ className, align, sideOffset, side, arrow, children, ...props }: Tooltip$1.Popup.Props & {
1090
+ align?: Tooltip$1.Positioner.Props["align"];
1091
+ side?: Tooltip$1.Positioner.Props["side"];
1092
+ sideOffset?: Tooltip$1.Positioner.Props["sideOffset"];
1093
+ arrow?: boolean;
1094
+ }): React$1.JSX.Element;
1095
+
1096
+ type SidebarContextProps = {
1097
+ state: "expanded" | "collapsed";
1098
+ open: boolean;
1099
+ setOpen: (open: boolean) => void;
1100
+ openMobile: boolean;
1101
+ setOpenMobile: (open: boolean) => void;
1102
+ isMobile: boolean;
1103
+ toggleSidebar: () => void;
1104
+ };
1105
+ declare function useSidebar(): SidebarContextProps;
1106
+ declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<"div"> & {
1107
+ defaultOpen?: boolean;
1108
+ open?: boolean;
1109
+ onOpenChange?: (open: boolean) => void;
1110
+ }): React$1.JSX.Element;
1111
+ declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<"div"> & {
1112
+ side?: "left" | "right";
1113
+ variant?: "sidebar" | "floating" | "inset";
1114
+ collapsible?: "offcanvas" | "icon" | "none";
1115
+ }): React$1.JSX.Element;
1116
+ declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): React$1.JSX.Element;
1117
+ declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): React$1.JSX.Element;
1118
+ declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): React$1.JSX.Element;
1119
+ declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): React$1.JSX.Element;
1120
+ declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1121
+ declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1122
+ declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
1123
+ declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1124
+ declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1125
+ declare function SidebarGroupLabel({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1126
+ declare function SidebarGroupAction({ className, render, ...props }: useRender.ComponentProps<"button">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1127
+ declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1128
+ declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): React$1.JSX.Element;
1129
+ declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
1130
+ declare const sidebarMenuButtonVariants: (props?: ({
1131
+ size?: "default" | "lg" | "sm" | null | undefined;
1132
+ variant?: "default" | "outline" | null | undefined;
1133
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1134
+ declare function SidebarMenuButton({ isActive, variant, size, tooltip, className, render, ...props }: useRender.ComponentProps<"button"> & {
1135
+ isActive?: boolean;
1136
+ tooltip?: string | React$1.ComponentProps<typeof TooltipPopup>;
1137
+ } & VariantProps<typeof sidebarMenuButtonVariants>): React$1.JSX.Element;
1138
+ declare function SidebarMenuAction({ className, showOnHover, render, ...props }: useRender.ComponentProps<"button"> & {
1139
+ showOnHover?: boolean;
1140
+ }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1141
+ declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1142
+ declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
1143
+ showIcon?: boolean;
1144
+ }): React$1.JSX.Element;
1145
+ declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): React$1.JSX.Element;
1146
+ declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
1147
+ declare function SidebarMenuSubButton({ size, isActive, className, render, ...props }: useRender.ComponentProps<"a"> & {
1148
+ size?: "sm" | "md";
1149
+ isActive?: boolean;
1150
+ }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1151
+
1152
+ declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
1153
+
1154
+ type SliderLabelPosition = "bottom" | "floating";
1155
+ declare function Slider({ className, children, defaultValue, value, min, max, labelPosition, formatLabel, ...props }: Slider$1.Root.Props & {
1156
+ /** Render each thumb's value beneath it, or in a floating bubble above it. */
1157
+ labelPosition?: SliderLabelPosition;
1158
+ formatLabel?: (value: number) => React$1.ReactNode;
1159
+ }): React$1.JSX.Element;
1160
+ declare function SliderValue({ className, ...props }: Slider$1.Value.Props): React$1.JSX.Element;
1161
+
1162
+ declare function Spinner({ className, ...props }: React.ComponentProps<typeof Loader2Icon>): React$1.JSX.Element;
1163
+
1164
+ declare function SpinnerOnDemand({ className, options, isLoading, icon, ...props }: React.ComponentProps<typeof Loader2Icon> & {
1165
+ isLoading: boolean;
1166
+ options?: Parameters<typeof useSpinDelay>[1];
1167
+ icon?: React.ReactNode;
1168
+ }): string | number | bigint | true | React$1.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | null;
1169
+
1170
+ declare const statVariants: (props?: ({
1171
+ variant?: "default" | "card" | "muted" | null | undefined;
1172
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1173
+ interface StatProps extends useRender.ComponentProps<"div"> {
1174
+ variant?: VariantProps<typeof statVariants>["variant"];
1175
+ }
1176
+ /**
1177
+ * A single headline metric (KPI). Compose it from `StatLabel`, `StatValue`,
1178
+ * `StatDescription` and an optional `StatTrend`. Drop bare `Stat`s into a
1179
+ * `StatGroup` for a divided row, or use `variant="muted" | "card"` for a
1180
+ * standalone tile.
1181
+ */
1182
+ declare function Stat({ className, variant, render, ...props }: StatProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1183
+ /** The metric's caption, e.g. "Active members". */
1184
+ declare function StatLabel({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1185
+ /**
1186
+ * The headline number. Sans + tabular so digits stay aligned across a row;
1187
+ * drop `font-sans` from `className` to render it in the serif display face.
1188
+ */
1189
+ declare function StatValue({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1190
+ /** Supporting copy under the value, e.g. "vs. 1,204 last month". */
1191
+ declare function StatDescription({ className, render, ...props }: useRender.ComponentProps<"p">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1192
+ declare const statTrendVariants: (props?: ({
1193
+ direction?: "up" | "down" | "neutral" | null | undefined;
1194
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1195
+ interface StatTrendProps extends React$1.ComponentProps<"span"> {
1196
+ direction?: VariantProps<typeof statTrendVariants>["direction"];
1197
+ /** Show the directional arrow before the children. Defaults to `true`. */
1198
+ showIcon?: boolean;
1199
+ }
1200
+ /**
1201
+ * A small delta chip — e.g. "+12.5%". Picks an up/down arrow from `direction`
1202
+ * and colors itself success/destructive/neutral.
1203
+ */
1204
+ declare function StatTrend({ className, direction, showIcon, children, ...props }: StatTrendProps): React$1.JSX.Element;
1205
+ /**
1206
+ * Lays a set of bare `Stat`s out as a divided row (stacked on narrow screens),
1207
+ * wrapped in a bordered card surface with even padding per metric.
1208
+ */
1209
+ declare function StatGroup({ className, render, ...props }: useRender.ComponentProps<"div">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1210
+
1211
+ type SwitchProps = Switch$1.Root.Props & {
1212
+ size?: "sm" | "md" | "lg";
1213
+ slim?: boolean;
1214
+ };
1215
+ declare function Switch({ className, size, slim, ...props }: SwitchProps): React$1.JSX.Element;
1216
+
1217
+ declare function Table({ className, ...props }: React$1.ComponentProps<"table">): React$1.JSX.Element;
1218
+ declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): React$1.JSX.Element;
1219
+ declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): React$1.JSX.Element;
1220
+ declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): React$1.JSX.Element;
1221
+ declare function TableRow({ className, ...props }: React$1.ComponentProps<"tr">): React$1.JSX.Element;
1222
+ declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): React$1.JSX.Element;
1223
+ declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): React$1.JSX.Element;
1224
+ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): React$1.JSX.Element;
1225
+
1226
+ type TabsVariant = "default" | "underline";
1227
+ declare function Tabs({ className, ...props }: Tabs$1.Root.Props): React$1.JSX.Element;
1228
+ declare function TabsList({ variant, className, children, ...props }: Tabs$1.List.Props & {
1229
+ variant?: TabsVariant;
1230
+ }): React$1.JSX.Element;
1231
+ declare function TabsTab({ className, ...props }: Tabs$1.Tab.Props): React$1.JSX.Element;
1232
+ declare function TabsPanel({ className, ...props }: Tabs$1.Panel.Props): React$1.JSX.Element;
1233
+
1234
+ type TagSize = "sm" | "md" | "lg";
1235
+ type TagSelectionMode = "none" | "single" | "multiple";
1236
+ interface TagGroupProps {
1237
+ size?: TagSize;
1238
+ selectionMode?: TagSelectionMode;
1239
+ defaultSelectedKeys?: Iterable<string>;
1240
+ selectedKeys?: Set<string>;
1241
+ onSelectionChange?: (keys: Set<string>) => void;
1242
+ onRemove?: (key: string) => void;
1243
+ className?: string;
1244
+ children?: React$1.ReactNode;
1245
+ }
1246
+ declare function TagGroup({ size, selectionMode, defaultSelectedKeys, selectedKeys: controlledKeys, onSelectionChange, onRemove, className, children, }: TagGroupProps): React$1.JSX.Element;
1247
+ interface TagProps extends Omit<React$1.ComponentProps<"span">, "children"> {
1248
+ /** Unique value used for selection and removal tracking. */
1249
+ value?: string;
1250
+ size?: TagSize;
1251
+ /** Numeric count displayed as a small pill beside the label. */
1252
+ count?: number;
1253
+ /** Called when the remove button is clicked. Renders the X button. */
1254
+ onRemove?: () => void;
1255
+ disabled?: boolean;
1256
+ children?: React$1.ReactNode;
1257
+ }
1258
+ declare function Tag({ value, size: sizeProp, count, onRemove: onRemoveProp, disabled, children, className, ...props }: TagProps): React$1.JSX.Element;
1259
+
1260
+ declare function TargetCountdown({ target, children, }: {
1261
+ target: Date | number;
1262
+ children: (duration: Duration | null, isFirstRender: boolean) => React.ReactNode;
1263
+ }): React$1.ReactNode;
1264
+
1265
+ declare function Timeline({ className, ...props }: React$1.ComponentProps<"ol">): React$1.JSX.Element;
1266
+ declare function TimelineItem({ className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
1267
+ /** The marker column: a dot and the connecting line beneath it. */
1268
+ declare function TimelineDot({ className, children, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1269
+ declare function TimelineContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1270
+ declare function TimelineTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1271
+ declare function TimelineTime({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1272
+ declare function TimelineDescription({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
1273
+
1274
+ interface TextEditorProps {
1275
+ /** Compact (sm) or standard (md) size */
1276
+ size?: "sm" | "md";
1277
+ /** Placeholder when the editor is empty */
1278
+ placeholder?: string;
1279
+ /** Initial HTML content */
1280
+ content?: string;
1281
+ /** Called with the updated HTML on every change */
1282
+ onChange?: (html: string) => void;
1283
+ /** Show tooltips on every toolbar button */
1284
+ withTooltips?: boolean;
1285
+ /** Replace the fixed toolbar with a selection-triggered floating toolbar */
1286
+ floatingToolbar?: boolean;
1287
+ /** Extra className for the outer wrapper */
1288
+ className?: string;
1289
+ }
1290
+ declare function TextEditor({ size, placeholder, content, onChange, withTooltips, floatingToolbar, className, }: TextEditorProps): React$1.JSX.Element;
1291
+
1292
+ declare const toastManager: _base_ui_react.ToastManager;
1293
+ declare const anchoredToastManager: _base_ui_react.ToastManager;
1294
+ type ToastPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
1295
+ interface ToastProviderProps extends Toast.Provider.Props {
1296
+ position?: ToastPosition;
1297
+ }
1298
+ declare function ToastProvider({ children, position, ...props }: ToastProviderProps): React$1.JSX.Element;
1299
+ declare function AnchoredToastProvider({ children, ...props }: Toast.Provider.Props): React$1.JSX.Element;
1300
+
1301
+ declare const toggleVariants: (props?: ({
1302
+ size?: "default" | "lg" | "sm" | null | undefined;
1303
+ variant?: "default" | "outline" | null | undefined;
1304
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1305
+ declare function Toggle$1({ className, variant, size, ...props }: Toggle$2.Props & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
1306
+
1307
+ declare function ToggleGroup({ className, variant, size, orientation, children, ...props }: ToggleGroup$1.Props & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
1308
+ declare function Toggle({ className, children, variant, size, ...props }: Toggle$2.Props & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
1309
+ declare function ToggleGroupSeparator({ className, orientation, ...props }: {
1310
+ className?: string;
1311
+ } & React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
1312
+
1313
+ declare function Toolbar({ className, ...props }: Toolbar$1.Root.Props): React$1.JSX.Element;
1314
+ declare function ToolbarButton({ className, ...props }: Toolbar$1.Button.Props): React$1.JSX.Element;
1315
+ declare function ToolbarLink({ className, ...props }: Toolbar$1.Link.Props): React$1.JSX.Element;
1316
+ declare function ToolbarInput({ className, ...props }: Toolbar$1.Input.Props): React$1.JSX.Element;
1317
+ declare function ToolbarGroup({ className, ...props }: Toolbar$1.Group.Props): React$1.JSX.Element;
1318
+ declare function ToolbarSeparator({ className, ...props }: Toolbar$1.Separator.Props): React$1.JSX.Element;
1319
+
1320
+ declare const VerticalScrollFader: React__default.ForwardRefExoticComponent<{
1321
+ asChild?: boolean;
1322
+ children?: React__default.ReactNode;
1323
+ } & Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
1324
+ declare const VerticalScrollFaderContent: React__default.ForwardRefExoticComponent<{
1325
+ asChild?: boolean;
1326
+ children?: React__default.ReactNode;
1327
+ } & Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
1328
+ faderSize?: string;
1329
+ showScrollbar?: boolean;
1330
+ } & React__default.RefAttributes<HTMLDivElement>>;
1331
+ declare const VerticalScrollFaderTopScroller: React__default.ForwardRefExoticComponent<{
1332
+ asChild?: boolean;
1333
+ children?: React__default.ReactNode;
1334
+ } & Omit<React__default.DetailedHTMLProps<React__default.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
1335
+ declare const VerticalScrollFaderBottomScroller: React__default.ForwardRefExoticComponent<{
1336
+ asChild?: boolean;
1337
+ children?: React__default.ReactNode;
1338
+ } & Omit<React__default.DetailedHTMLProps<React__default.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React__default.RefAttributes<HTMLButtonElement>>;
1339
+
1340
+ declare const videoPlayerVariants: (props?: ({
1341
+ size?: "lg" | "sm" | "md" | null | undefined;
1342
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1343
+ interface VideoPlayerProps extends Omit<React$1.ComponentProps<"div">, "title">, VariantProps<typeof videoPlayerVariants> {
1344
+ src: string;
1345
+ poster?: string;
1346
+ title?: string;
1347
+ autoPlay?: boolean;
1348
+ loop?: boolean;
1349
+ }
1350
+ declare function VideoPlayer({ className, size, src, poster, title, autoPlay, loop, ...props }: VideoPlayerProps): React$1.JSX.Element;
1351
+
1352
+ interface DashboardHeaderProps extends Omit<AsChildProps<"div">, "title"> {
1353
+ title?: React.ReactNode;
1354
+ subtitle?: React.ReactNode;
1355
+ rightActions?: React.ReactNode;
1356
+ breadcrumb?: React.ReactNode;
1357
+ }
1358
+ declare function DashboardHeader({ title, subtitle, className, children, asChild, rightActions, breadcrumb, ...props }: DashboardHeaderProps): React$1.JSX.Element;
1359
+
1360
+ interface DashboardPanelProps extends AsChildProps<"div"> {
1361
+ header?: React.ReactNode;
1362
+ }
1363
+ declare function DashboardPanel({ className, asChild, children, header, ...props }: DashboardPanelProps): React$1.JSX.Element;
1364
+
1365
+ interface ValueObject {
1366
+ [themeName: string]: string;
1367
+ }
1368
+ interface UseThemeProps {
1369
+ /** List of all available theme names */
1370
+ themes: string[];
1371
+ /** Forced theme name for the current page */
1372
+ forcedTheme?: string | undefined;
1373
+ /** Update the theme */
1374
+ setTheme: React.Dispatch<React.SetStateAction<string>>;
1375
+ /** Active theme name */
1376
+ theme?: string | undefined;
1377
+ /** If `enableSystem` is true and the active theme is "system", this returns whether the system preference resolved to "dark" or "light". Otherwise, identical to `theme` */
1378
+ resolvedTheme?: string | undefined;
1379
+ /** If enableSystem is true, returns the System theme preference ("dark" or "light"), regardless what the active theme is */
1380
+ systemTheme?: "dark" | "light" | undefined;
1381
+ }
1382
+ type Attribute = `data-${string}` | "class";
1383
+ interface ThemeProviderProps extends React.PropsWithChildren {
1384
+ /** List of all available theme names */
1385
+ themes?: string[] | undefined;
1386
+ /** Forced theme name for the current page */
1387
+ forcedTheme?: string | undefined;
1388
+ /** Whether to switch between dark and light themes based on prefers-color-scheme */
1389
+ enableSystem?: boolean | undefined;
1390
+ /** Disable all CSS transitions when switching themes */
1391
+ disableTransitionOnChange?: boolean | undefined;
1392
+ /** Whether to indicate to browsers which color scheme is used (dark or light) for built-in UI like inputs and buttons */
1393
+ enableColorScheme?: boolean | undefined;
1394
+ /** Key used to store theme setting in localStorage */
1395
+ storageKey?: string | undefined;
1396
+ /** Default theme name (for v0.0.12 and lower the default was light). If `enableSystem` is false, the default theme is light */
1397
+ defaultTheme?: string | undefined;
1398
+ /** HTML attribute modified based on the active theme. Accepts `class`, `data-*` (meaning any data attribute, `data-mode`, `data-color`, etc.), or an array which could include both */
1399
+ attribute?: Attribute | Attribute[] | undefined;
1400
+ /** Mapping of theme name to HTML attribute value. Object where key is the theme name and value is the attribute value */
1401
+ value?: ValueObject | undefined;
1402
+ /** Nonce string to pass to the inline script for CSP headers */
1403
+ nonce?: string | undefined;
1404
+ }
1405
+ declare const useTheme: () => UseThemeProps;
1406
+ declare const ThemeProvider: (props: ThemeProviderProps) => React.ReactNode;
1407
+ declare const ThemeContextOverride: ({ children, value, }: {
1408
+ children: React.ReactNode;
1409
+ value: string;
1410
+ }) => string | number | bigint | boolean | React$1.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | null | undefined;
1411
+ declare const script: (...args: any[]) => void;
1412
+
1413
+ interface AvatarUploadBaseProps extends Omit<React.ComponentProps<typeof Avatar>, "onDrop" | "children"> {
1414
+ onDrop: (file: File) => void;
1415
+ onDelete?: () => void;
1416
+ disabled?: boolean;
1417
+ loading?: boolean;
1418
+ progress: number;
1419
+ imageUrl: string | undefined;
1420
+ initials: React.ReactNode;
1421
+ alt: string;
1422
+ avatarClassName?: string;
1423
+ mode?: "image" | "image&video";
1424
+ }
1425
+ declare function AvatarUploadBase({ onDrop, onDelete, disabled, loading, progress, imageUrl, initials, alt, className, avatarClassName, mode, ...props }: AvatarUploadBaseProps): React$1.JSX.Element;
1426
+
1427
+ interface ImageUploadBaseProps extends Omit<React.ComponentProps<"div">, "onDrop"> {
1428
+ onDrop: (file: File) => void;
1429
+ onDelete?: () => void;
1430
+ disabled?: boolean;
1431
+ loading?: boolean;
1432
+ progress: number;
1433
+ imageUrl: string | null;
1434
+ alt: string;
1435
+ }
1436
+ declare function ImageUploadBase({ onDrop, onDelete, disabled, loading, progress, imageUrl, alt, className, ...props }: ImageUploadBaseProps): React$1.JSX.Element;
1437
+
1438
+ declare function cn(...inputs: ClassValue[]): string;
1439
+
1440
+ declare function useCallbackRef<T extends (...args: Array<any>) => any>(fn: T): T;
1441
+
1442
+ declare function useFirstRender(): boolean;
1443
+
1444
+ declare function useHover<T extends Element>({ mounted, }?: {
1445
+ mounted?: boolean;
1446
+ }): readonly [(node: T | null) => void, boolean];
1447
+
1448
+ declare function useIsTabActive(): boolean;
1449
+
1450
+ declare function useSubscribeBreakpoints(): void;
1451
+ interface UseMediaQueryOptions {
1452
+ ssr?: boolean;
1453
+ defaultSSRValue?: boolean;
1454
+ }
1455
+ declare function useMediaQuery(query: string, { ssr, defaultSSRValue }?: UseMediaQueryOptions): boolean;
1456
+ declare function useIsSm({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1457
+ declare function useIsMd({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1458
+ declare function useIsLg({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1459
+ declare function useIsXl({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1460
+ declare function useIs2xl({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1461
+
1462
+ export { Accordion, AccordionPanel as AccordionContent, AccordionItem, AccordionPanel, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogCreateHandle, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertDialogViewport, AlertTitle, AnchoredToastProvider, AnimatedThemeToggler, AppGalleryLogoIcon, AppStoreButton, type AppStoreButtonStore, AppleLogoIcon, type AsChildProps, AspectRatio, type Attribute, Autocomplete, AutocompleteClear, AutocompleteCollection, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePopup, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarAddButton, AvatarCompanyIcon, AvatarFallback, AvatarGroup, AvatarImage, AvatarLabelGroup, AvatarProfilePhoto, AvatarUploadBase, type AvatarUploadBaseProps, Badge, BadgeAvatar, BadgeCloseButton, BadgeDot, BadgeFlag, BadgeGroup, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Group as ButtonGroup, GroupSeparator as ButtonGroupSeparator, GroupText as ButtonGroupText, Calendar, Card, CardAction, CardPanel as CardContent, CardDescription, CardFooter, CardFrame, CardFrameDescription, CardFrameFooter, CardFrameHeader, CardFrameTitle, CardHeader, CardPanel, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxGroup, Collapsible, CollapsiblePanel as CollapsibleContent, CollapsiblePanel, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandCollection, CommandCreateHandle, CommandDialog, CommandDialogPopup, CommandDialogTrigger, CommandEmpty, CommandFooter, CommandGroup, CommandGroupLabel, CommandInput, CommandItem, CommandList, CommandPanel, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CreditCard, type CreditCardProps, type CreditCardType, DashboardHeader, DashboardPanel, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogCreateHandle, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPanel, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, DialogViewport, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DribbbleLogoIcon, Menu as DropdownMenu, MenuCheckboxItem as DropdownMenuCheckboxItem, MenuPopup as DropdownMenuContent, MenuCreateHandle as DropdownMenuCreateHandle, MenuGroup as DropdownMenuGroup, MenuItem as DropdownMenuItem, MenuGroupLabel as DropdownMenuLabel, MenuPortal as DropdownMenuPortal, MenuRadioGroup as DropdownMenuRadioGroup, MenuRadioItem as DropdownMenuRadioItem, MenuSeparator as DropdownMenuSeparator, MenuShortcut as DropdownMenuShortcut, MenuSub as DropdownMenuSub, MenuSubPopup as DropdownMenuSubContent, MenuSubTrigger as DropdownMenuSubTrigger, MenuTrigger as DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorOrEmptyState, FacebookLogoIcon, FeaturedIcon, Field, FieldControl, FieldDescription, FieldError, FieldGroup, FieldItem, FieldLabel, FieldValidity, Fieldset, FieldsetLegend, FigmaLogoIcon, ForbiddenErrorState, Form, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GalaxyStoreLogoIcon, GeneralErrorState, GoogleLogoIcon, GooglePlayLogoIcon, Group, GroupSeparator, GroupText, HorizontalScrollFader, HorizontalScrollFaderContent, HorizontalScrollFaderLeftScroller, HorizontalScrollFaderRightScroller, PreviewCard as HoverCard, PreviewCardPopup as HoverCardContent, PreviewCardTrigger as HoverCardTrigger, ImageUploadBase, type ImageUploadBaseProps, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InternalServerErrorState, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, LeftScroller, Menu, MenuCheckboxItem, MenuCreateHandle, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSub, MenuSubPopup, MenuSubTrigger, MenuTrigger, Menubar, MenuCheckboxItem as MenubarCheckboxItem, MenubarContent, MenuGroup as MenubarGroup, MenuItem as MenubarItem, MenuGroupLabel as MenubarLabel, MenubarMenu, MenuPortal as MenubarPortal, MenuRadioGroup as MenubarRadioGroup, MenuRadioItem as MenubarRadioItem, MenuSeparator as MenubarSeparator, MenuShortcut as MenubarShortcut, MenuSub as MenubarSub, MenuSubPopup as MenubarSubContent, MenuSubTrigger as MenubarSubTrigger, MenubarTrigger, Meter, MeterIndicator, MeterLabel, MeterTrack, MeterValue, MultiSelect, type MultiSelectItem, type MultiSelectProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotFoundErrorState, type NotNullValues, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, OfflineErrorState, type OmitUnknown, Pagination, PaginationContent, PaginationControls, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverClose, PopoverPopup as PopoverContent, PopoverCreateHandle, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, PreviewCard, PreviewCardPopup, PreviewCardTrigger, Progress, ProgressCircle, ProgressFloatingValue, ProgressHalfCircle, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, QRCode, QRCodeGradientScan, Radio, RadioGroup, Radio as RadioGroupItem, type RequiredSubset, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightScroller, ScrollArea, ScrollBar, SectionHeader, Select, SelectPopup as SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectPopup, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBackdrop, SheetClose, SheetPopup as SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetBackdrop as SheetOverlay, SheetPanel, SheetPopup, SheetPortal, SheetTitle, SheetTrigger, SheetViewport, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, SliderValue, SmoothScroll, type SmoothScrollProps, type SmoothWheelOptions, SocialButton, type SocialButtonProvider, Spinner, SpinnerOnDemand, Stat, StatDescription, StatGroup, StatLabel, StatTrend, StatValue, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsPanel as TabsContent, TabsList, TabsPanel, TabsTab, TabsTab as TabsTrigger, Tag, TagGroup, type TagGroupProps, type TagProps, type TagSelectionMode, type TagSize, type Tail, type TailOptional, TargetCountdown, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ThemeContextOverride, ThemeProvider, type ThemeProviderProps, type ThemeTogglerVariant, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, type ToastPosition, ToastProvider, Toggle$1 as Toggle, ToggleGroup, Toggle as ToggleGroupItem, ToggleGroupSeparator, Toolbar, ToolbarButton, ToolbarGroup, ToolbarInput, ToolbarLink, ToolbarSeparator, Tooltip, TooltipPopup as TooltipContent, TooltipCreateHandle, TooltipDescription, TooltipPopup, TooltipProvider, TooltipTitle, TooltipTrigger, UnauthorizedErrorState, type UseThemeProps, VerticalScrollFader, VerticalScrollFaderBottomScroller, VerticalScrollFaderContent, VerticalScrollFaderTopScroller, VideoPlayer, XLogoIcon, anchoredToastManager, appStoreButtonVariants, avatarGroupVariants, avatarVariants, badgeGroupVariants, badgeVariants, cn, featuredIconVariants, groupVariants, itemVariants, navigationMenuTriggerStyle, qrCodeVariants, script, sectionHeaderDescriptionVariants, sectionHeaderTitleVariants, sheetPopupVariants, sheetViewportVariants, socialButtonVariants, statTrendVariants, statVariants, toastManager, toggleVariants, useAutocompleteFilter, useCallbackRef, useCarousel, useComboboxFilter, useFirstRender, useHover, useIs2xl, useIsLg, useIsMd, useIsSm, useIsTabActive, useIsXl, useMediaQuery, useSidebar, useSmoothWheel, useSubscribeBreakpoints, useTheme, videoPlayerVariants };