@nexa-ui-kit/core 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2763 @@
1
+ export { cn } from './utils/index.cjs';
2
+ import { VariantProps } from 'class-variance-authority';
3
+ export { VariantProps, cva } from 'class-variance-authority';
4
+ import * as react_hook_form from 'react-hook-form';
5
+ import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
6
+ export { FieldValues, SubmitHandler, UseFormReturn } from 'react-hook-form';
7
+ import * as _radix_ui_react_slot from '@radix-ui/react-slot';
8
+ export { Slot } from '@radix-ui/react-slot';
9
+ import * as React$1 from 'react';
10
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
11
+ import * as TogglePrimitive from '@radix-ui/react-toggle';
12
+ import * as react_jsx_runtime from 'react/jsx-runtime';
13
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
14
+ import { Command as Command$1 } from 'cmdk';
15
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
16
+ import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
17
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
18
+ import * as MenubarPrimitive from '@radix-ui/react-menubar';
19
+ import * as class_variance_authority_types from 'class-variance-authority/types';
20
+ import { DayPickerProps, DayButton } from 'react-day-picker';
21
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
22
+ import * as RechartsPrimitive from 'recharts';
23
+ import { Easing, MotionValue } from 'framer-motion';
24
+ import * as SelectPrimitive from '@radix-ui/react-select';
25
+ import { Toaster as Toaster$1 } from 'sonner';
26
+ export { toast } from 'sonner';
27
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
28
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
29
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
30
+ import * as ToolbarPrimitive from '@radix-ui/react-toolbar';
31
+ import * as ToastPrimitive from '@radix-ui/react-toast';
32
+ import { OTPInputProps } from 'input-otp';
33
+ export { ClassValue } from 'clsx';
34
+
35
+ interface AccordionSingleProps extends React$1.HTMLAttributes<HTMLDivElement> {
36
+ /** Single item can be expanded at a time */
37
+ type: "single";
38
+ /** Controlled value */
39
+ value?: string;
40
+ /** Default value */
41
+ defaultValue?: string;
42
+ /** Callback when value changes */
43
+ onValueChange?: (value: string) => void;
44
+ /** Whether the expanded item can be collapsed */
45
+ collapsible?: boolean;
46
+ /** Whether the accordion is disabled */
47
+ disabled?: boolean;
48
+ }
49
+ interface AccordionMultipleProps extends React$1.HTMLAttributes<HTMLDivElement> {
50
+ /** Multiple items can be expanded */
51
+ type: "multiple";
52
+ /** Controlled value */
53
+ value?: string[];
54
+ /** Default value */
55
+ defaultValue?: string[];
56
+ /** Callback when value changes */
57
+ onValueChange?: (value: string[]) => void;
58
+ /** Whether the accordion is disabled */
59
+ disabled?: boolean;
60
+ }
61
+ type AccordionProps = AccordionSingleProps | AccordionMultipleProps;
62
+ /**
63
+ * Accordion component for expandable content sections.
64
+ * @example
65
+ * <Accordion type="single" collapsible>
66
+ * <AccordionItem value="item-1">
67
+ * <AccordionTrigger>Section 1</AccordionTrigger>
68
+ * <AccordionContent>Content 1</AccordionContent>
69
+ * </AccordionItem>
70
+ * </Accordion>
71
+ */
72
+ declare const Accordion: React$1.ForwardRefExoticComponent<AccordionProps & React$1.RefAttributes<HTMLDivElement>>;
73
+ interface AccordionItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
74
+ /** Unique value for this item */
75
+ value: string;
76
+ /** Whether this item is disabled */
77
+ disabled?: boolean;
78
+ }
79
+ /**
80
+ * Container for accordion trigger and content.
81
+ */
82
+ declare const AccordionItem: React$1.ForwardRefExoticComponent<AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>;
83
+ interface AccordionTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
84
+ }
85
+ /**
86
+ * Button that toggles the accordion item.
87
+ */
88
+ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
89
+ interface AccordionContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
90
+ }
91
+ /**
92
+ * Content panel that expands/collapses.
93
+ */
94
+ declare const AccordionContent: React$1.ForwardRefExoticComponent<AccordionContentProps & React$1.RefAttributes<HTMLDivElement>>;
95
+
96
+ interface BreadcrumbProps extends React$1.ComponentPropsWithoutRef<"nav"> {
97
+ }
98
+ /**
99
+ * Breadcrumb navigation component for showing hierarchical location.
100
+ * @example
101
+ * <Breadcrumb>
102
+ * <BreadcrumbList>
103
+ * <BreadcrumbItem>
104
+ * <BreadcrumbLink href="/">Home</BreadcrumbLink>
105
+ * </BreadcrumbItem>
106
+ * <BreadcrumbSeparator />
107
+ * <BreadcrumbItem>
108
+ * <BreadcrumbLink href="/products">Products</BreadcrumbLink>
109
+ * </BreadcrumbItem>
110
+ * <BreadcrumbSeparator />
111
+ * <BreadcrumbItem>
112
+ * <BreadcrumbPage>Current Page</BreadcrumbPage>
113
+ * </BreadcrumbItem>
114
+ * </BreadcrumbList>
115
+ * </Breadcrumb>
116
+ */
117
+ declare const Breadcrumb: React$1.ForwardRefExoticComponent<BreadcrumbProps & React$1.RefAttributes<HTMLElement>>;
118
+ interface BreadcrumbListProps extends React$1.ComponentPropsWithoutRef<"ol"> {
119
+ }
120
+ /**
121
+ * Ordered list container for breadcrumb items.
122
+ */
123
+ declare const BreadcrumbList: React$1.ForwardRefExoticComponent<BreadcrumbListProps & React$1.RefAttributes<HTMLOListElement>>;
124
+ interface BreadcrumbItemProps extends React$1.ComponentPropsWithoutRef<"li"> {
125
+ }
126
+ /**
127
+ * Individual breadcrumb item container.
128
+ */
129
+ declare const BreadcrumbItem: React$1.ForwardRefExoticComponent<BreadcrumbItemProps & React$1.RefAttributes<HTMLLIElement>>;
130
+ interface BreadcrumbLinkProps extends React$1.ComponentPropsWithoutRef<"a"> {
131
+ /** Render as child element (for composition with router Link) */
132
+ asChild?: boolean;
133
+ }
134
+ /**
135
+ * Clickable breadcrumb link. Supports asChild for router integration.
136
+ * @example
137
+ * <BreadcrumbLink href="/home">Home</BreadcrumbLink>
138
+ * <BreadcrumbLink asChild><Link to="/home">Home</Link></BreadcrumbLink>
139
+ */
140
+ declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<BreadcrumbLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
141
+ interface BreadcrumbPageProps extends React$1.ComponentPropsWithoutRef<"span"> {
142
+ }
143
+ /**
144
+ * Current page indicator (non-interactive).
145
+ */
146
+ declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<BreadcrumbPageProps & React$1.RefAttributes<HTMLSpanElement>>;
147
+ interface BreadcrumbSeparatorProps extends React$1.ComponentPropsWithoutRef<"li"> {
148
+ children?: React$1.ReactNode;
149
+ }
150
+ /**
151
+ * Visual separator between breadcrumb items. Defaults to chevron.
152
+ */
153
+ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbSeparatorProps & React$1.RefAttributes<HTMLLIElement>>;
154
+ interface BreadcrumbEllipsisProps extends React$1.ComponentPropsWithoutRef<"span"> {
155
+ }
156
+ /**
157
+ * Ellipsis indicator for collapsed breadcrumb items.
158
+ */
159
+ declare const BreadcrumbEllipsis: React$1.ForwardRefExoticComponent<BreadcrumbEllipsisProps & React$1.RefAttributes<HTMLSpanElement>>;
160
+
161
+ interface AspectRatioProps extends React$1.HTMLAttributes<HTMLDivElement> {
162
+ /** The desired ratio (width / height), e.g. 16/9, 4/3, 1 */
163
+ ratio?: number;
164
+ }
165
+ /**
166
+ * AspectRatio component that maintains a consistent width/height ratio.
167
+ * Children (especially img/video) will automatically fill the container.
168
+ * @example
169
+ * <AspectRatio ratio={16/9}>
170
+ * <img src="..." alt="..." />
171
+ * </AspectRatio>
172
+ */
173
+ declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
174
+
175
+ type AvatarSize = "sm" | "md" | "lg" | "xl";
176
+ interface AvatarProps extends React$1.HTMLAttributes<HTMLSpanElement> {
177
+ /** Image source URL */
178
+ src?: string;
179
+ /** Alt text for the image */
180
+ alt?: string;
181
+ /** Fallback text or element (e.g., initials) */
182
+ fallback?: React$1.ReactNode;
183
+ /** Size of the avatar */
184
+ size?: AvatarSize;
185
+ }
186
+ /**
187
+ * Avatar component for displaying user images with fallback.
188
+ * @example
189
+ * <Avatar src="..." alt="User" fallback="JD" />
190
+ * <Avatar fallback="AB" size="lg" />
191
+ */
192
+ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLSpanElement>>;
193
+
194
+ type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
195
+ type ButtonSize = "default" | "sm" | "lg" | "icon";
196
+ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
197
+ /** Visual style variant */
198
+ variant?: ButtonVariant;
199
+ /** Size preset */
200
+ size?: ButtonSize;
201
+ /** Render as child element (for composition) */
202
+ asChild?: boolean;
203
+ }
204
+ /**
205
+ * Unstyled Button component with variant/size data attributes.
206
+ * Use data-variant and data-size for styling hooks.
207
+ * @example
208
+ * <Button variant="primary">Click me</Button>
209
+ * <Button variant="outline" size="sm">Small</Button>
210
+ * <Button asChild><a href="/link">Link Button</a></Button>
211
+ */
212
+ declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
213
+
214
+ interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
215
+ }
216
+ /**
217
+ * Input component.
218
+ * Allows entering text or other data.
219
+ * @example
220
+ * <Input type="email" placeholder="Enter email" />
221
+ */
222
+ declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
223
+
224
+ type BadgeVariant = "default" | "secondary" | "destructive" | "outline";
225
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
226
+ /** Visual style variant */
227
+ variant?: BadgeVariant;
228
+ }
229
+ /**
230
+ * Unstyled Badge component with variant data attribute.
231
+ * Use data-variant for styling hooks.
232
+ * @example
233
+ * <Badge>Default</Badge>
234
+ * <Badge variant="secondary">Secondary</Badge>
235
+ * <Badge variant="destructive">Error</Badge>
236
+ */
237
+ declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
238
+
239
+ interface CardProps extends React$1.HTMLAttributes<HTMLElement> {
240
+ }
241
+ /**
242
+ * Unstyled Card container component.
243
+ * @example
244
+ * <Card>
245
+ * <CardHeader>
246
+ * <CardTitle>Title</CardTitle>
247
+ * <CardDescription>Description</CardDescription>
248
+ * </CardHeader>
249
+ * <CardContent>Content</CardContent>
250
+ * <CardFooter>Actions</CardFooter>
251
+ * </Card>
252
+ */
253
+ declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLElement>>;
254
+ interface CardHeaderProps extends React$1.HTMLAttributes<HTMLElement> {
255
+ }
256
+ declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLElement>>;
257
+ interface CardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
258
+ }
259
+ declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
260
+ interface CardDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
261
+ }
262
+ declare const CardDescription: React$1.ForwardRefExoticComponent<CardDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
263
+ interface CardContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
264
+ }
265
+ declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
266
+ interface CardFooterProps extends React$1.HTMLAttributes<HTMLElement> {
267
+ }
268
+ declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLElement>>;
269
+
270
+ interface CollapsibleProps extends React$1.HTMLAttributes<HTMLDivElement> {
271
+ /** Controlled open state */
272
+ open?: boolean;
273
+ /** Default open state for uncontrolled usage */
274
+ defaultOpen?: boolean;
275
+ /** Callback when open state changes */
276
+ onOpenChange?: (open: boolean) => void;
277
+ /** Whether the collapsible is disabled */
278
+ disabled?: boolean;
279
+ }
280
+ /**
281
+ * Collapsible component that can be expanded/collapsed.
282
+ * @example
283
+ * <Collapsible>
284
+ * <CollapsibleTrigger>Toggle</CollapsibleTrigger>
285
+ * <CollapsibleContent>Content here</CollapsibleContent>
286
+ * </Collapsible>
287
+ */
288
+ declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
289
+ interface CollapsibleTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
290
+ /** Render as child element (for composition) */
291
+ asChild?: boolean;
292
+ }
293
+ /**
294
+ * Button that toggles the Collapsible open/closed state.
295
+ */
296
+ declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
297
+ interface CollapsibleContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
298
+ /** Force mount the content (useful for SSR or custom animations) */
299
+ forceMount?: boolean;
300
+ /** Animation duration in ms (default: 200) */
301
+ animationDuration?: number;
302
+ }
303
+ /**
304
+ * Content that is shown/hidden based on the Collapsible state.
305
+ * Includes smooth height animation.
306
+ */
307
+ declare const CollapsibleContent: React$1.ForwardRefExoticComponent<CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>>;
308
+
309
+ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
310
+ /** Indicates loading state for accessibility */
311
+ loading?: boolean;
312
+ }
313
+ /**
314
+ * Unstyled Skeleton placeholder component.
315
+ * Use data-loading attribute for animation styling.
316
+ * @example
317
+ * <Skeleton className="h-4 w-32" />
318
+ * <Skeleton className="h-10 w-full animate-pulse" />
319
+ */
320
+ declare const Skeleton: React$1.ForwardRefExoticComponent<SkeletonProps & React$1.RefAttributes<HTMLDivElement>>;
321
+
322
+ interface SpinnerProps extends React$1.SVGAttributes<SVGSVGElement> {
323
+ /** Size of the spinner (width and height) */
324
+ size?: number | string;
325
+ /** Custom aria-label for accessibility */
326
+ label?: string;
327
+ }
328
+ /**
329
+ * Unstyled Spinner component using inline SVG.
330
+ * No external icon library dependency.
331
+ * Add CSS animation (e.g., spin) via className.
332
+ * @example
333
+ * <Spinner className="animate-spin" />
334
+ * <Spinner size={24} label="Loading data..." />
335
+ */
336
+ declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<SVGSVGElement>>;
337
+
338
+ interface HoverCardProps {
339
+ /** Controlled open state */
340
+ open?: boolean;
341
+ /** Default open state for uncontrolled usage */
342
+ defaultOpen?: boolean;
343
+ /** Callback when open state changes */
344
+ onOpenChange?: (open: boolean) => void;
345
+ /** Delay in ms before opening (default: 700) */
346
+ openDelay?: number;
347
+ /** Delay in ms before closing (default: 300) */
348
+ closeDelay?: number;
349
+ children: React$1.ReactNode;
350
+ }
351
+ /**
352
+ * HoverCard component that shows content on hover.
353
+ * @example
354
+ * <HoverCard>
355
+ * <HoverCardTrigger>Hover me</HoverCardTrigger>
356
+ * <HoverCardContent>Content here</HoverCardContent>
357
+ * </HoverCard>
358
+ */
359
+ declare const HoverCard: React$1.FC<HoverCardProps>;
360
+ interface HoverCardTriggerProps extends React$1.HTMLAttributes<HTMLDivElement> {
361
+ /** Render as child element (for composition) */
362
+ asChild?: boolean;
363
+ }
364
+ /**
365
+ * Element that triggers the hover card on mouse enter.
366
+ */
367
+ declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
368
+ type HoverCardSide = "top" | "right" | "bottom" | "left";
369
+ type HoverCardAlign = "start" | "center" | "end";
370
+ interface HoverCardContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
371
+ /** Side to position the content */
372
+ side?: HoverCardSide;
373
+ /** Offset from the trigger (default: 4) */
374
+ sideOffset?: number;
375
+ /** Alignment relative to trigger */
376
+ align?: HoverCardAlign;
377
+ }
378
+ /**
379
+ * Content that appears on hover.
380
+ */
381
+ declare const HoverCardContent: React$1.ForwardRefExoticComponent<HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
382
+ interface HoverCardArrowProps extends React$1.HTMLAttributes<HTMLDivElement> {
383
+ /** Width of the arrow (default: 10) */
384
+ width?: number;
385
+ /** Height of the arrow (default: 5) */
386
+ height?: number;
387
+ }
388
+ /**
389
+ * Arrow element that points to the trigger.
390
+ * Place inside HoverCardContent.
391
+ */
392
+ declare const HoverCardArrow: React$1.ForwardRefExoticComponent<HoverCardArrowProps & React$1.RefAttributes<HTMLDivElement>>;
393
+
394
+ interface KbdProps extends React$1.HTMLAttributes<HTMLElement> {
395
+ }
396
+ /**
397
+ * Keyboard key indicator component.
398
+ * Use data-slot="kbd" for styling hooks.
399
+ * @example
400
+ * <Kbd>⌘</Kbd>
401
+ * <Kbd>Ctrl</Kbd>
402
+ * <KbdGroup><Kbd>⌘</Kbd><Kbd>K</Kbd></KbdGroup>
403
+ */
404
+ declare const Kbd: React$1.ForwardRefExoticComponent<KbdProps & React$1.RefAttributes<HTMLElement>>;
405
+ interface KbdGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
406
+ }
407
+ /**
408
+ * Group multiple Kbd elements together.
409
+ * @example
410
+ * <KbdGroup><Kbd>⌘</Kbd><Kbd>K</Kbd></KbdGroup>
411
+ */
412
+ declare const KbdGroup: React$1.ForwardRefExoticComponent<KbdGroupProps & React$1.RefAttributes<HTMLDivElement>>;
413
+
414
+ interface LabelProps extends React$1.ComponentPropsWithoutRef<"label"> {
415
+ }
416
+ /**
417
+ * A functional label component that supports accessible interactions.
418
+ * Built on top of Radix UI Label Primitive.
419
+ */
420
+ declare const Label: React$1.ForwardRefExoticComponent<LabelProps & React$1.RefAttributes<HTMLLabelElement>>;
421
+
422
+ interface NavigationMenuProps extends React$1.HTMLAttributes<HTMLElement> {
423
+ /** Controlled value */
424
+ value?: string;
425
+ /** Default value */
426
+ defaultValue?: string;
427
+ /** Callback when value changes */
428
+ onValueChange?: (value: string) => void;
429
+ /** Orientation of the menu */
430
+ orientation?: "horizontal" | "vertical";
431
+ }
432
+ /**
433
+ * Navigation menu component with dropdown support.
434
+ * @example
435
+ * <NavigationMenu>
436
+ * <NavigationMenuList>
437
+ * <NavigationMenuItem value="home">
438
+ * <NavigationMenuTrigger>Home</NavigationMenuTrigger>
439
+ * <NavigationMenuContent>Content</NavigationMenuContent>
440
+ * </NavigationMenuItem>
441
+ * </NavigationMenuList>
442
+ * </NavigationMenu>
443
+ */
444
+ declare const NavigationMenu: React$1.ForwardRefExoticComponent<NavigationMenuProps & React$1.RefAttributes<HTMLElement>>;
445
+ interface NavigationMenuListProps extends React$1.HTMLAttributes<HTMLUListElement> {
446
+ }
447
+ /**
448
+ * Container for navigation menu items.
449
+ */
450
+ declare const NavigationMenuList: React$1.ForwardRefExoticComponent<NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>>;
451
+ interface NavigationMenuItemProps extends React$1.HTMLAttributes<HTMLLIElement> {
452
+ /** Unique value for this item */
453
+ value?: string;
454
+ }
455
+ /**
456
+ * Container for navigation trigger and content.
457
+ */
458
+ declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
459
+ interface NavigationMenuTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
460
+ }
461
+ /**
462
+ * Button that toggles the navigation menu content.
463
+ */
464
+ declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
465
+ interface NavigationMenuContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
466
+ }
467
+ /**
468
+ * Dropdown content for a navigation menu item.
469
+ */
470
+ declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>>;
471
+ interface NavigationMenuLinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
472
+ /** Whether this is the active link */
473
+ active?: boolean;
474
+ }
475
+ /**
476
+ * Link element for navigation menu.
477
+ */
478
+ declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
479
+ interface NavigationMenuIndicatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
480
+ }
481
+ /**
482
+ * Optional indicator for active navigation item.
483
+ */
484
+ declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>>;
485
+
486
+ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
487
+ /** Progress value from 0 to 100 */
488
+ value?: number;
489
+ /** Maximum value (default: 100) */
490
+ max?: number;
491
+ /** Show indeterminate loading animation */
492
+ indeterminate?: boolean;
493
+ }
494
+ /**
495
+ * Progress bar component with animations.
496
+ * Use data-slot for styling hooks.
497
+ * @example
498
+ * <Progress value={50} />
499
+ * <Progress value={75} max={100} />
500
+ * <Progress indeterminate />
501
+ */
502
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
503
+
504
+ interface RadioGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
505
+ /** Controlled value */
506
+ value?: string;
507
+ /** Default value for uncontrolled usage */
508
+ defaultValue?: string;
509
+ /** Callback when value changes */
510
+ onValueChange?: (value: string) => void;
511
+ /** Name for form submission */
512
+ name?: string;
513
+ /** Whether the radio group is disabled */
514
+ disabled?: boolean;
515
+ /** Whether a selection is required */
516
+ required?: boolean;
517
+ /** Orientation of the radio group */
518
+ orientation?: "horizontal" | "vertical";
519
+ }
520
+ /**
521
+ * RadioGroup component for selecting one option from a set.
522
+ * @example
523
+ * <RadioGroup defaultValue="option1" onValueChange={setValue}>
524
+ * <RadioGroupItem value="option1" />
525
+ * <RadioGroupItem value="option2" />
526
+ * </RadioGroup>
527
+ */
528
+ declare const RadioGroup: React$1.ForwardRefExoticComponent<RadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
529
+ interface RadioGroupItemProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "value"> {
530
+ /** Value of this radio item */
531
+ value: string;
532
+ /** Label text for the radio item */
533
+ label?: React$1.ReactNode;
534
+ }
535
+ /**
536
+ * Individual radio item within a RadioGroup.
537
+ */
538
+ declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
539
+
540
+ type PopoverSide = "top" | "right" | "bottom" | "left";
541
+ type PopoverAlign = "start" | "center" | "end";
542
+ interface PopoverProps {
543
+ /** Controlled open state */
544
+ open?: boolean;
545
+ /** Default open state for uncontrolled usage */
546
+ defaultOpen?: boolean;
547
+ /** Callback when open state changes */
548
+ onOpenChange?: (open: boolean) => void;
549
+ children: React$1.ReactNode;
550
+ }
551
+ /**
552
+ * Popover component that shows content on click.
553
+ * @example
554
+ * <Popover>
555
+ * <PopoverTrigger>Click me</PopoverTrigger>
556
+ * <PopoverContent>
557
+ * <PopoverArrow />
558
+ * Content here
559
+ * </PopoverContent>
560
+ * </Popover>
561
+ */
562
+ declare const Popover: React$1.FC<PopoverProps>;
563
+ interface PopoverTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
564
+ }
565
+ /**
566
+ * Button that toggles the popover open/closed.
567
+ */
568
+ declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
569
+ interface PopoverAnchorProps extends React$1.HTMLAttributes<HTMLDivElement> {
570
+ }
571
+ /**
572
+ * Optional anchor element for positioning the popover.
573
+ */
574
+ declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
575
+ interface PopoverContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
576
+ /** Side to position the content */
577
+ side?: PopoverSide;
578
+ /** Offset from the trigger (default: 8) */
579
+ sideOffset?: number;
580
+ /** Alignment relative to trigger */
581
+ align?: PopoverAlign;
582
+ /** Whether to use portal rendering */
583
+ portal?: boolean;
584
+ }
585
+ /**
586
+ * Content that appears when popover is open.
587
+ */
588
+ declare const PopoverContent: React$1.ForwardRefExoticComponent<PopoverContentProps & React$1.RefAttributes<HTMLDivElement>>;
589
+ interface PopoverArrowProps extends React$1.HTMLAttributes<HTMLDivElement> {
590
+ /** Width of the arrow (default: 10) */
591
+ width?: number;
592
+ /** Height of the arrow (default: 5) */
593
+ height?: number;
594
+ }
595
+ /**
596
+ * Arrow element that points to the trigger.
597
+ * Place inside PopoverContent.
598
+ */
599
+ declare const PopoverArrow: React$1.ForwardRefExoticComponent<PopoverArrowProps & React$1.RefAttributes<HTMLDivElement>>;
600
+
601
+ interface SeparatorProps extends React$1.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> {
602
+ }
603
+ /**
604
+ * Unstyled Separator component wrapping Radix Separator primitive.
605
+ * Use data-orientation for styling horizontal/vertical variants.
606
+ * @example
607
+ * <Separator orientation="horizontal" />
608
+ * <Separator orientation="vertical" decorative={false} />
609
+ */
610
+ declare const Separator: React$1.ForwardRefExoticComponent<SeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
611
+
612
+ interface SidebarContextValue {
613
+ open: boolean;
614
+ onOpenChange: (open: boolean) => void;
615
+ collapsed: boolean;
616
+ onCollapsedChange: (collapsed: boolean) => void;
617
+ side: "left" | "right";
618
+ variant: "sidebar" | "floating" | "inset";
619
+ isMobile: boolean;
620
+ }
621
+ declare function useSidebar(): SidebarContextValue;
622
+ interface SidebarProviderProps {
623
+ /** Controlled open state (for mobile sheet) */
624
+ open?: boolean;
625
+ /** Default open state */
626
+ defaultOpen?: boolean;
627
+ /** Callback when open state changes */
628
+ onOpenChange?: (open: boolean) => void;
629
+ /** Controlled collapsed state (for desktop) */
630
+ collapsed?: boolean;
631
+ /** Default collapsed state */
632
+ defaultCollapsed?: boolean;
633
+ /** Callback when collapsed state changes */
634
+ onCollapsedChange?: (collapsed: boolean) => void;
635
+ /** Which side the sidebar is on */
636
+ side?: "left" | "right";
637
+ /** Sidebar variant */
638
+ variant?: "sidebar" | "floating" | "inset";
639
+ /** Mobile breakpoint in pixels */
640
+ mobileBreakpoint?: number;
641
+ children: React$1.ReactNode;
642
+ }
643
+ /**
644
+ * Provider for sidebar state.
645
+ * @example
646
+ * <SidebarProvider>
647
+ * <Sidebar>...</Sidebar>
648
+ * <SidebarInset>...</SidebarInset>
649
+ * </SidebarProvider>
650
+ */
651
+ declare const SidebarProvider: React$1.FC<SidebarProviderProps>;
652
+ interface SidebarProps extends React$1.HTMLAttributes<HTMLElement> {
653
+ /** Width when expanded */
654
+ width?: number;
655
+ /** Width when collapsed */
656
+ collapsedWidth?: number;
657
+ }
658
+ /**
659
+ * Main sidebar container.
660
+ */
661
+ declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<HTMLElement>>;
662
+ interface SidebarHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
663
+ }
664
+ /**
665
+ * Header section of the sidebar.
666
+ */
667
+ declare const SidebarHeader: React$1.ForwardRefExoticComponent<SidebarHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
668
+ interface SidebarContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
669
+ }
670
+ /**
671
+ * Scrollable content section of the sidebar.
672
+ */
673
+ declare const SidebarContent: React$1.ForwardRefExoticComponent<SidebarContentProps & React$1.RefAttributes<HTMLDivElement>>;
674
+ interface SidebarFooterProps extends React$1.HTMLAttributes<HTMLDivElement> {
675
+ }
676
+ /**
677
+ * Footer section of the sidebar.
678
+ */
679
+ declare const SidebarFooter: React$1.ForwardRefExoticComponent<SidebarFooterProps & React$1.RefAttributes<HTMLDivElement>>;
680
+ interface SidebarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
681
+ }
682
+ /**
683
+ * Group of sidebar items.
684
+ */
685
+ declare const SidebarGroup: React$1.ForwardRefExoticComponent<SidebarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
686
+ interface SidebarGroupLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
687
+ }
688
+ /**
689
+ * Label for a sidebar group.
690
+ */
691
+ declare const SidebarGroupLabel: React$1.ForwardRefExoticComponent<SidebarGroupLabelProps & React$1.RefAttributes<HTMLDivElement>>;
692
+ interface SidebarMenuItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
693
+ /** Whether this item is active */
694
+ active?: boolean;
695
+ /** Icon to display */
696
+ icon?: React$1.ReactNode;
697
+ }
698
+ /**
699
+ * Interactive menu item in the sidebar.
700
+ */
701
+ declare const SidebarMenuItem: React$1.ForwardRefExoticComponent<SidebarMenuItemProps & React$1.RefAttributes<HTMLButtonElement>>;
702
+ interface SidebarTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
703
+ }
704
+ /**
705
+ * Button to toggle the sidebar (open on mobile, collapse on desktop).
706
+ */
707
+ declare const SidebarTrigger: React$1.ForwardRefExoticComponent<SidebarTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
708
+ interface SidebarInsetProps extends React$1.HTMLAttributes<HTMLElement> {
709
+ }
710
+ /**
711
+ * Main content area next to the sidebar.
712
+ */
713
+ declare const SidebarInset: React$1.ForwardRefExoticComponent<SidebarInsetProps & React$1.RefAttributes<HTMLElement>>;
714
+
715
+ type SliderOrientation = "horizontal" | "vertical";
716
+ interface SliderProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
717
+ /** Current value (controlled) */
718
+ value?: number[];
719
+ /** Default value (uncontrolled) */
720
+ defaultValue?: number[];
721
+ /** Minimum value */
722
+ min?: number;
723
+ /** Maximum value */
724
+ max?: number;
725
+ /** Step increment */
726
+ step?: number;
727
+ /** Orientation of the slider */
728
+ orientation?: SliderOrientation;
729
+ /** Whether the slider is disabled */
730
+ disabled?: boolean;
731
+ /** Show value label on thumb */
732
+ showValue?: boolean;
733
+ /** Format for the value label: 'value' shows the number, 'percent' shows percentage */
734
+ valueFormat?: "value" | "percent";
735
+ /** Callback when value changes */
736
+ onValueChange?: (value: number[]) => void;
737
+ /** Callback when value commit (on pointer up) */
738
+ onValueCommit?: (value: number[]) => void;
739
+ }
740
+ /**
741
+ * Slider component with default styles built-in.
742
+ * Use className or data attributes for custom styling.
743
+ * @example
744
+ * <Slider defaultValue={[50]} max={100} step={1} />
745
+ * <Slider value={[25, 75]} onValueChange={setValue} showValue />
746
+ * <Slider defaultValue={[50]} showValue valueFormat="percent" />
747
+ */
748
+ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLDivElement>>;
749
+
750
+ interface SwitchProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onChange"> {
751
+ /** Whether the switch is checked (controlled) */
752
+ checked?: boolean;
753
+ /** Default checked state (uncontrolled) */
754
+ defaultChecked?: boolean;
755
+ /** Callback when checked state changes */
756
+ onCheckedChange?: (checked: boolean) => void;
757
+ /** Whether the switch is disabled */
758
+ disabled?: boolean;
759
+ /** Whether the switch is required */
760
+ required?: boolean;
761
+ /** Name for form submission */
762
+ name?: string;
763
+ /** Value for form submission */
764
+ value?: string;
765
+ /** Custom style for the thumb element */
766
+ thumbStyle?: React$1.CSSProperties;
767
+ /** Custom className for the thumb element */
768
+ thumbClassName?: string;
769
+ }
770
+ /**
771
+ * Switch component for toggling between on/off states.
772
+ * Use data-state for styling (checked/unchecked).
773
+ * @example
774
+ * <Switch />
775
+ * <Switch checked={isOn} onCheckedChange={setIsOn} />
776
+ * <Switch defaultChecked disabled />
777
+ */
778
+ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
779
+
780
+ interface TabsProps extends React$1.HTMLAttributes<HTMLDivElement> {
781
+ /** Controlled value */
782
+ value?: string;
783
+ /** Default value for uncontrolled usage */
784
+ defaultValue?: string;
785
+ /** Callback when value changes */
786
+ onValueChange?: (value: string) => void;
787
+ /** Orientation of tabs */
788
+ orientation?: "horizontal" | "vertical";
789
+ /** How tabs are activated - automatic (on focus) or manual (on click) */
790
+ activationMode?: "automatic" | "manual";
791
+ }
792
+ /**
793
+ * Tabs component for organizing content.
794
+ * @example
795
+ * <Tabs defaultValue="tab1">
796
+ * <TabsList>
797
+ * <TabsTrigger value="tab1">Tab 1</TabsTrigger>
798
+ * <TabsTrigger value="tab2">Tab 2</TabsTrigger>
799
+ * </TabsList>
800
+ * <TabsContent value="tab1">Content 1</TabsContent>
801
+ * <TabsContent value="tab2">Content 2</TabsContent>
802
+ * </Tabs>
803
+ */
804
+ declare const Tabs: React$1.ForwardRefExoticComponent<TabsProps & React$1.RefAttributes<HTMLDivElement>>;
805
+ interface TabsListProps extends React$1.HTMLAttributes<HTMLDivElement> {
806
+ }
807
+ /**
808
+ * Container for tab triggers with animated indicator.
809
+ */
810
+ declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
811
+ interface TabsTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
812
+ /** Value that associates this trigger with a content panel */
813
+ value: string;
814
+ }
815
+ /**
816
+ * Button that activates a tab panel.
817
+ */
818
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
819
+ interface TabsContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
820
+ /** Value that associates this content with a trigger */
821
+ value: string;
822
+ /** Force mount the content even when not active */
823
+ forceMount?: boolean;
824
+ }
825
+ /**
826
+ * Content panel for a tab.
827
+ */
828
+ declare const TabsContent: React$1.ForwardRefExoticComponent<TabsContentProps & React$1.RefAttributes<HTMLDivElement>>;
829
+
830
+ type ToggleVariant = "default" | "outline";
831
+ type ToggleSize = "default" | "sm" | "lg";
832
+ interface ToggleProps extends React$1.ComponentPropsWithoutRef<typeof TogglePrimitive.Root> {
833
+ /** Visual style variant */
834
+ variant?: ToggleVariant;
835
+ /** Size preset */
836
+ size?: ToggleSize;
837
+ }
838
+ /**
839
+ * Unstyled Toggle component wrapping Radix Toggle primitive.
840
+ * Radix adds data-state="on"/"off" automatically.
841
+ * Use data-variant and data-size for styling hooks.
842
+ * @example
843
+ * <Toggle aria-label="Bold">B</Toggle>
844
+ * <Toggle variant="outline" pressed>Active</Toggle>
845
+ */
846
+ declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
847
+
848
+ interface TooltipProviderProps {
849
+ /** Delay duration in ms before tooltip shows (default: 700) */
850
+ delayDuration?: number;
851
+ /** Skip the delay when opening after having been open */
852
+ skipDelayDuration?: number;
853
+ children: React$1.ReactNode;
854
+ }
855
+ /**
856
+ * Wraps your app to provide global tooltip settings.
857
+ */
858
+ declare const TooltipProvider: React$1.FC<TooltipProviderProps>;
859
+ type TooltipSide = "top" | "right" | "bottom" | "left";
860
+ type TooltipAlign = "start" | "center" | "end";
861
+ interface TooltipProps {
862
+ /** Controlled open state */
863
+ open?: boolean;
864
+ /** Default open state for uncontrolled usage */
865
+ defaultOpen?: boolean;
866
+ /** Callback when open state changes */
867
+ onOpenChange?: (open: boolean) => void;
868
+ /** Delay in ms before tooltip shows (default: 700) */
869
+ delayDuration?: number;
870
+ children: React$1.ReactNode;
871
+ }
872
+ /**
873
+ * Tooltip component that shows content on hover.
874
+ * @example
875
+ * <Tooltip>
876
+ * <TooltipTrigger>Hover me</TooltipTrigger>
877
+ * <TooltipContent>Tooltip text</TooltipContent>
878
+ * </Tooltip>
879
+ */
880
+ declare const Tooltip: React$1.FC<TooltipProps>;
881
+ interface TooltipTriggerProps extends React$1.HTMLAttributes<HTMLSpanElement> {
882
+ asChild?: boolean;
883
+ }
884
+ /**
885
+ * Element that triggers the tooltip on hover.
886
+ */
887
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
888
+ interface TooltipContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
889
+ /** Side to position the content */
890
+ side?: TooltipSide;
891
+ /** Offset from the trigger (default: 4) */
892
+ sideOffset?: number;
893
+ /** Alignment relative to trigger */
894
+ align?: TooltipAlign;
895
+ }
896
+ /**
897
+ * Content that appears when tooltip is open.
898
+ */
899
+ declare const TooltipContent: React$1.ForwardRefExoticComponent<TooltipContentProps & React$1.RefAttributes<HTMLDivElement>>;
900
+ interface TooltipArrowProps extends React$1.HTMLAttributes<HTMLDivElement> {
901
+ /** Width of the arrow (default: 8) */
902
+ width?: number;
903
+ /** Height of the arrow (default: 4) */
904
+ height?: number;
905
+ }
906
+ /**
907
+ * Arrow element for the tooltip.
908
+ */
909
+ declare const TooltipArrow: React$1.ForwardRefExoticComponent<TooltipArrowProps & React$1.RefAttributes<HTMLDivElement>>;
910
+
911
+ type TextareaVariant = "default" | "filled" | "outline" | "ghost";
912
+ type TextareaSize = "default" | "sm" | "lg";
913
+ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
914
+ /** Visual style variant */
915
+ variant?: TextareaVariant;
916
+ /** Size preset */
917
+ size?: TextareaSize;
918
+ /** Error state */
919
+ error?: boolean;
920
+ /** Auto-resize based on content */
921
+ autoResize?: boolean;
922
+ /** Minimum number of rows (for autoResize) */
923
+ minRows?: number;
924
+ /** Maximum number of rows (for autoResize) */
925
+ maxRows?: number;
926
+ /** Show character counter */
927
+ showCount?: boolean;
928
+ /** Custom counter render function */
929
+ counterRender?: (count: number, maxLength?: number) => React$1.ReactNode;
930
+ }
931
+ /**
932
+ * Textarea component with variant/size data attributes.
933
+ * Supports auto-resize, character counter, and error states.
934
+ * @example
935
+ * <Textarea placeholder="Enter text..." />
936
+ * <Textarea variant="filled" size="lg" />
937
+ * <Textarea autoResize minRows={2} maxRows={6} />
938
+ * <Textarea showCount maxLength={200} />
939
+ * <Textarea error={true} />
940
+ */
941
+ declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
942
+
943
+ interface CheckIconProps extends React$1.SVGAttributes<SVGSVGElement> {
944
+ /** Icon size in pixels */
945
+ size?: number;
946
+ }
947
+ /**
948
+ * Inline SVG check icon - no external dependencies.
949
+ * @example
950
+ * <CheckIcon size={16} />
951
+ */
952
+ declare const CheckIcon: ({ size, ...props }: CheckIconProps) => react_jsx_runtime.JSX.Element;
953
+ interface CheckboxProps extends React$1.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> {
954
+ /** Custom check icon (defaults to inline SVG checkmark) */
955
+ checkIcon?: React$1.ReactNode;
956
+ }
957
+ /**
958
+ * Unstyled Checkbox component wrapping Radix Checkbox primitive.
959
+ * Radix adds data-state="checked"/"unchecked"/"indeterminate" automatically.
960
+ * @example
961
+ * <Checkbox id="terms" />
962
+ * <Checkbox checked checkIcon={<CustomIcon />} />
963
+ */
964
+ declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLButtonElement>>;
965
+
966
+ interface CommandProps extends React$1.ComponentPropsWithoutRef<typeof Command$1> {
967
+ }
968
+ /**
969
+ * Command Root Component.
970
+ * Acts as the container for the command palette.
971
+ * @example
972
+ * <Command>
973
+ * <CommandInput />
974
+ * <CommandList>...</CommandList>
975
+ * </Command>
976
+ */
977
+ declare const Command: React$1.ForwardRefExoticComponent<CommandProps & React$1.RefAttributes<HTMLDivElement>>;
978
+ interface CommandDialogProps extends DialogPrimitive.DialogProps {
979
+ /** content className for the Dialog Content */
980
+ contentClassName?: string;
981
+ }
982
+ /**
983
+ * Command Dialog Component.
984
+ * Wraps the Command component in a Dialog for modal usage.
985
+ */
986
+ declare const CommandDialog: ({ children, contentClassName, ...props }: CommandDialogProps) => react_jsx_runtime.JSX.Element;
987
+ interface CommandInputProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.Input> {
988
+ /** Optional custom search icon to replace default */
989
+ icon?: React$1.ReactNode;
990
+ }
991
+ /**
992
+ * Command Input Component.
993
+ * An input field for searching commands.
994
+ */
995
+ declare const CommandInput: React$1.ForwardRefExoticComponent<CommandInputProps & React$1.RefAttributes<HTMLInputElement>>;
996
+ interface CommandListProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.List> {
997
+ }
998
+ /**
999
+ * Command List Component.
1000
+ * Container for the list of items and groups.
1001
+ */
1002
+ declare const CommandList: React$1.ForwardRefExoticComponent<CommandListProps & React$1.RefAttributes<HTMLDivElement>>;
1003
+ interface CommandEmptyProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.Empty> {
1004
+ }
1005
+ /**
1006
+ * Command Empty Component.
1007
+ * Rendered when no results match the search query.
1008
+ */
1009
+ declare const CommandEmpty: React$1.ForwardRefExoticComponent<CommandEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
1010
+ interface CommandGroupProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.Group> {
1011
+ }
1012
+ /**
1013
+ * Command Group Component.
1014
+ * Groups related items together.
1015
+ */
1016
+ declare const CommandGroup: React$1.ForwardRefExoticComponent<CommandGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1017
+ interface CommandSeparatorProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.Separator> {
1018
+ }
1019
+ /**
1020
+ * Command Separator Component.
1021
+ * A visual separator between items or groups.
1022
+ */
1023
+ declare const CommandSeparator: React$1.ForwardRefExoticComponent<CommandSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
1024
+ interface CommandItemProps extends React$1.ComponentPropsWithoutRef<typeof Command$1.Item> {
1025
+ }
1026
+ /**
1027
+ * Command Item Component.
1028
+ * A selectable item in the command list.
1029
+ */
1030
+ declare const CommandItem: React$1.ForwardRefExoticComponent<CommandItemProps & React$1.RefAttributes<HTMLDivElement>>;
1031
+ interface CommandShortcutProps extends React$1.HTMLAttributes<HTMLSpanElement> {
1032
+ }
1033
+ /**
1034
+ * Command Shortcut Component.
1035
+ * Displays a keyboard shortcut for an item.
1036
+ */
1037
+ declare const CommandShortcut: {
1038
+ ({ className, ...props }: CommandShortcutProps): react_jsx_runtime.JSX.Element;
1039
+ displayName: string;
1040
+ };
1041
+
1042
+ /**
1043
+ * The root component for the Context Menu.
1044
+ */
1045
+ declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
1046
+ /**
1047
+ * The trigger that opens the context menu when right-clicked.
1048
+ */
1049
+ declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
1050
+ /**
1051
+ * Groups multiple ContextMenu items.
1052
+ */
1053
+ declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1054
+ /**
1055
+ * Portals the context menu content into a different part of the DOM.
1056
+ */
1057
+ declare const ContextMenuPortal: React$1.FC<ContextMenuPrimitive.ContextMenuPortalProps>;
1058
+ /**
1059
+ * A sub-menu within the context menu.
1060
+ */
1061
+ declare const ContextMenuSub: React$1.FC<ContextMenuPrimitive.ContextMenuSubProps>;
1062
+ /**
1063
+ * A group of radio buttons within the context menu.
1064
+ */
1065
+ declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1066
+ interface ContextMenuSubTriggerProps extends React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> {
1067
+ inset?: boolean;
1068
+ }
1069
+ /**
1070
+ * Trigger item for a sub-menu.
1071
+ */
1072
+ declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
1073
+ /**
1074
+ * The content of a sub-menu.
1075
+ */
1076
+ declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1077
+ /**
1078
+ * The content that pops up when the context menu is triggered.
1079
+ */
1080
+ declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1081
+ interface ContextMenuItemProps extends React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> {
1082
+ inset?: boolean;
1083
+ }
1084
+ /**
1085
+ * An item within the context menu.
1086
+ */
1087
+ declare const ContextMenuItem: React$1.ForwardRefExoticComponent<ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
1088
+ /**
1089
+ * A checkbox item within the context menu.
1090
+ */
1091
+ declare const ContextMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1092
+ /**
1093
+ * A radio item within the context menu.
1094
+ */
1095
+ declare const ContextMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1096
+ interface ContextMenuLabelProps extends React$1.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> {
1097
+ inset?: boolean;
1098
+ }
1099
+ /**
1100
+ * A label for a group of items in the context menu.
1101
+ */
1102
+ declare const ContextMenuLabel: React$1.ForwardRefExoticComponent<ContextMenuLabelProps & React$1.RefAttributes<HTMLDivElement>>;
1103
+ /**
1104
+ * A separator to visually divide items in the context menu.
1105
+ */
1106
+ declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1107
+ /**
1108
+ * Keyboard shortcut display for a menu item.
1109
+ */
1110
+ declare const ContextMenuShortcut: {
1111
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
1112
+ displayName: string;
1113
+ };
1114
+
1115
+ /**
1116
+ * The root component for the Dropdown Menu.
1117
+ */
1118
+ declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
1119
+ /**
1120
+ * The trigger that opens the dropdown menu.
1121
+ */
1122
+ declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1123
+ /**
1124
+ * Groups multiple DropdownMenu items.
1125
+ */
1126
+ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1127
+ /**
1128
+ * Portals the dropdown menu content into a different part of the DOM.
1129
+ */
1130
+ declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
1131
+ /**
1132
+ * A sub-menu within the dropdown menu.
1133
+ */
1134
+ declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
1135
+ /**
1136
+ * A group of radio buttons within the dropdown menu.
1137
+ */
1138
+ declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
1139
+ interface DropdownMenuSubTriggerProps extends React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> {
1140
+ inset?: boolean;
1141
+ }
1142
+ /**
1143
+ * The trigger item for a sub-menu.
1144
+ */
1145
+ declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
1146
+ /**
1147
+ * The content of a sub-menu.
1148
+ */
1149
+ declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1150
+ /**
1151
+ * The content that pops up when the dropdown menu is triggered.
1152
+ */
1153
+ declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1154
+ interface DropdownMenuItemProps extends React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> {
1155
+ inset?: boolean;
1156
+ }
1157
+ /**
1158
+ * An item within the dropdown menu.
1159
+ */
1160
+ declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>>;
1161
+ /**
1162
+ * A checkbox item within the dropdown menu.
1163
+ */
1164
+ declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1165
+ /**
1166
+ * A radio item within the dropdown menu.
1167
+ */
1168
+ declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1169
+ interface DropdownMenuLabelProps extends React$1.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> {
1170
+ inset?: boolean;
1171
+ }
1172
+ /**
1173
+ * A label for a group of items in the dropdown menu.
1174
+ */
1175
+ declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>>;
1176
+ /**
1177
+ * A separator to visually divide items in the dropdown menu.
1178
+ */
1179
+ declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1180
+ /**
1181
+ * Keyboard shortcut display for a menu item.
1182
+ */
1183
+ declare const DropdownMenuShortcut: {
1184
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
1185
+ displayName: string;
1186
+ };
1187
+
1188
+ /**
1189
+ * A specific menu within the menubar.
1190
+ */
1191
+ declare function MenubarMenu(props: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime.JSX.Element;
1192
+ /**
1193
+ * Groups multiple Menubar items.
1194
+ */
1195
+ declare function MenubarGroup(props: React$1.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime.JSX.Element;
1196
+ /**
1197
+ * Portals the menubar content into a different part of the DOM.
1198
+ */
1199
+ declare function MenubarPortal(props: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime.JSX.Element;
1200
+ /**
1201
+ * A group of radio buttons within a menu.
1202
+ */
1203
+ declare function MenubarRadioGroup(props: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
1204
+ /**
1205
+ * A sub-menu within the menubar.
1206
+ */
1207
+ declare function MenubarSub(props: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element;
1208
+ /**
1209
+ * The root component for the menubar.
1210
+ * Contains all menu items and triggers.
1211
+ */
1212
+ declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1213
+ /**
1214
+ * The trigger that opens a specific menu within the menubar.
1215
+ */
1216
+ declare const MenubarTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1217
+ interface MenubarSubTriggerProps extends React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.SubTrigger> {
1218
+ inset?: boolean;
1219
+ }
1220
+ /**
1221
+ * The trigger item for a sub-menu within the menubar.
1222
+ */
1223
+ declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>>;
1224
+ /**
1225
+ * The content of a sub-menu.
1226
+ */
1227
+ declare const MenubarSubContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1228
+ /**
1229
+ * The content that pops up when a menu trigger is activated.
1230
+ */
1231
+ declare const MenubarContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1232
+ interface MenubarItemProps extends React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Item> {
1233
+ inset?: boolean;
1234
+ }
1235
+ /**
1236
+ * An item within a menu.
1237
+ */
1238
+ declare const MenubarItem: React$1.ForwardRefExoticComponent<MenubarItemProps & React$1.RefAttributes<HTMLDivElement>>;
1239
+ /**
1240
+ * A checkbox item within a menu.
1241
+ */
1242
+ declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1243
+ /**
1244
+ * A radio item within a menu.
1245
+ */
1246
+ declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1247
+ interface MenubarLabelProps extends React$1.ComponentPropsWithoutRef<typeof MenubarPrimitive.Label> {
1248
+ inset?: boolean;
1249
+ }
1250
+ /**
1251
+ * A label for a group of items in a menu.
1252
+ */
1253
+ declare const MenubarLabel: React$1.ForwardRefExoticComponent<MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>>;
1254
+ /**
1255
+ * A separator to visually divide items in a menu.
1256
+ */
1257
+ declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1258
+ /**
1259
+ * Keyboard shortcut display for a menu item.
1260
+ */
1261
+ declare const MenubarShortcut: {
1262
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
1263
+ displayName: string;
1264
+ };
1265
+
1266
+ /**
1267
+ * A container for grouping inputs with addons, buttons, or text.
1268
+ * Provides a cohesive look for input groups.
1269
+ */
1270
+ declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1271
+ declare const inputGroupAddonVariants: (props?: ({
1272
+ align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
1273
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1274
+ interface InputGroupAddonProps extends React$1.ComponentProps<"div">, VariantProps<typeof inputGroupAddonVariants> {
1275
+ }
1276
+ /**
1277
+ * An addon element for the input group, typically used for icons or text prefixes/suffixes.
1278
+ * Clicking the addon focuses the adjacent input.
1279
+ */
1280
+ declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
1281
+ declare const inputGroupButtonVariants: (props?: ({
1282
+ size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
1283
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1284
+ interface InputGroupButtonProps extends React$1.ComponentProps<"button">, VariantProps<typeof inputGroupButtonVariants> {
1285
+ variant?: string;
1286
+ }
1287
+ /**
1288
+ * A button component designed to be integrated within an input group.
1289
+ */
1290
+ declare function InputGroupButton({ className, type, size, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
1291
+ /**
1292
+ * Simple text wrapper for non-interactive content within an input group.
1293
+ */
1294
+ declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1295
+ /**
1296
+ * The input field component for the input group.
1297
+ */
1298
+ declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
1299
+ /**
1300
+ * The textarea component for the input group.
1301
+ */
1302
+ declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
1303
+
1304
+ /**
1305
+ * The root container for a form managed by react-hook-form.
1306
+ */
1307
+ declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
1308
+ /**
1309
+ * Wrapper for a form field that provides context for labels, errors, and descriptions.
1310
+ * Handles wiring up the react-hook-form Controller.
1311
+ */
1312
+ declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
1313
+ /**
1314
+ * Hook to access field state and IDs within a FormField.
1315
+ * Must be used within a <FormField>.
1316
+ */
1317
+ declare const useFormField: () => {
1318
+ invalid: boolean;
1319
+ isDirty: boolean;
1320
+ isTouched: boolean;
1321
+ isValidating: boolean;
1322
+ error?: react_hook_form.FieldError;
1323
+ id: string;
1324
+ name: string;
1325
+ formItemId: string;
1326
+ formDescriptionId: string;
1327
+ formMessageId: string;
1328
+ };
1329
+ /**
1330
+ * Container for a single form field (Label, Control, Description, Message).
1331
+ * Generates a unique ID for accessible labelling.
1332
+ */
1333
+ declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1334
+ /**
1335
+ * Label for a form field.
1336
+ * Automatically ties to the input via htmlFor and highlights on error.
1337
+ */
1338
+ declare const FormLabel: React$1.ForwardRefExoticComponent<React$1.LabelHTMLAttributes<HTMLLabelElement> & React$1.RefAttributes<HTMLLabelElement>>;
1339
+ /**
1340
+ * Wrapper for the actual input component (Input, Select, etc.).
1341
+ * Handles ARIA attributes for accessibility (invalid state, description IDs).
1342
+ */
1343
+ declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
1344
+ /**
1345
+ * Helper text displayed below the form field.
1346
+ */
1347
+ declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1348
+ /**
1349
+ * Error message displayed when validation fails.
1350
+ */
1351
+ declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
1352
+
1353
+ /**
1354
+ * Container for a group of items.
1355
+ * @example
1356
+ * <ItemGroup>
1357
+ * <Item>...</Item>
1358
+ * <Item>...</Item>
1359
+ * </ItemGroup>
1360
+ */
1361
+ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1362
+ /**
1363
+ * Visual separator between items.
1364
+ */
1365
+ declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<"hr">): react_jsx_runtime.JSX.Element;
1366
+ declare const itemVariants: (props?: ({
1367
+ variant?: "default" | "outline" | "muted" | null | undefined;
1368
+ size?: "default" | "sm" | null | undefined;
1369
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1370
+ interface ItemProps extends React$1.ComponentProps<"div">, VariantProps<typeof itemVariants> {
1371
+ asChild?: boolean;
1372
+ }
1373
+ /**
1374
+ * Interactive or display item component.
1375
+ * Supports various variants and sizes.
1376
+ */
1377
+ declare function Item({ className, variant, size, asChild, ...props }: ItemProps): react_jsx_runtime.JSX.Element;
1378
+ declare const itemMediaVariants: (props?: ({
1379
+ variant?: "default" | "icon" | "image" | null | undefined;
1380
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1381
+ interface ItemMediaProps extends React$1.ComponentProps<"div">, VariantProps<typeof itemMediaVariants> {
1382
+ }
1383
+ /**
1384
+ * Media container for icons, images, or avatars within an Item.
1385
+ */
1386
+ declare function ItemMedia({ className, variant, ...props }: ItemMediaProps): react_jsx_runtime.JSX.Element;
1387
+ /**
1388
+ * Main content area for an Item.
1389
+ */
1390
+ declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1391
+ /**
1392
+ * Title element for an Item.
1393
+ */
1394
+ declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1395
+ /**
1396
+ * Description text for an Item.
1397
+ */
1398
+ declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
1399
+ /**
1400
+ * Action buttons container (e.g., for copy, edit, delete buttons).
1401
+ */
1402
+ declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1403
+ /**
1404
+ * Optional header section for an Item.
1405
+ */
1406
+ declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1407
+ /**
1408
+ * Optional footer section for an Item.
1409
+ */
1410
+ declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1411
+
1412
+ /**
1413
+ * FieldSet is a container for grouping related fields.
1414
+ * It's used to group related fields together, such as a set of checkboxes or radio buttons,
1415
+ * or even a section of a form.
1416
+ */
1417
+ declare function FieldSet({ className, ...props }: React$1.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
1418
+ interface FieldLegendProps extends React$1.ComponentProps<"legend"> {
1419
+ variant?: "legend" | "label";
1420
+ }
1421
+ /**
1422
+ * FieldLegend is a caption for a FieldSet.
1423
+ * It's used to provide a title or description for a group of fields.
1424
+ */
1425
+ declare function FieldLegend({ className, variant, ...props }: FieldLegendProps): react_jsx_runtime.JSX.Element;
1426
+ /**
1427
+ * FieldGroup is a wrapper for stacking multiple fields.
1428
+ * It's used to group related fields together, such as a set of inputs.
1429
+ */
1430
+ declare function FieldGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1431
+ declare const fieldVariants: (props?: ({
1432
+ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
1433
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1434
+ interface FieldProps extends React$1.ComponentProps<"div">, VariantProps<typeof fieldVariants> {
1435
+ }
1436
+ /**
1437
+ * Field is the main container for a form field.
1438
+ * It provides the structure and styling for the field's label, input, description, and error message.
1439
+ */
1440
+ declare function Field({ className, orientation, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
1441
+ /**
1442
+ * FieldContent is a wrapper for field content.
1443
+ * It's used to group the field's input and label together.
1444
+ */
1445
+ declare function FieldContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1446
+ /**
1447
+ * FieldLabel is the label for the field.
1448
+ * It's used to provide a descriptive label for the field's input.
1449
+ */
1450
+ declare function FieldLabel({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
1451
+ /**
1452
+ * FieldTitle is a title for a group or section within a field.
1453
+ * It's used to provide a title for a section of content within a field.
1454
+ */
1455
+ declare function FieldTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
1456
+ /**
1457
+ * FieldDescription is helper text for the field.
1458
+ * It's used to provide additional information or instructions about the field.
1459
+ */
1460
+ declare function FieldDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
1461
+ /**
1462
+ * FieldSeparator is a visual separator between fields or sections.
1463
+ * It's used to separate groups of fields or sections of content.
1464
+ */
1465
+ declare function FieldSeparator({ children, className, ...props }: React$1.ComponentProps<"div"> & {
1466
+ children?: React$1.ReactNode;
1467
+ }): react_jsx_runtime.JSX.Element;
1468
+ interface FieldErrorProps extends React$1.ComponentProps<"div"> {
1469
+ errors?: Array<{
1470
+ message?: string;
1471
+ } | undefined>;
1472
+ }
1473
+ /**
1474
+ * FieldError is a component for displaying error messages.
1475
+ * It's used to display validation errors for the field.
1476
+ */
1477
+ declare function FieldError({ className, children, errors, ...props }: FieldErrorProps): react_jsx_runtime.JSX.Element | null;
1478
+
1479
+ type CalendarProps = DayPickerProps & {
1480
+ buttonVariant?: string;
1481
+ showTimePicker?: boolean;
1482
+ };
1483
+ /**
1484
+ * A date picker component built on react-day-picker.
1485
+ * @example
1486
+ * <Calendar
1487
+ * mode="single"
1488
+ * selected={date}
1489
+ * onSelect={setDate}
1490
+ * showTimePicker
1491
+ * className="rounded-md border"
1492
+ * />
1493
+ */
1494
+ declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, showTimePicker, formatters, components, ...props }: CalendarProps): react_jsx_runtime.JSX.Element;
1495
+ declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
1496
+
1497
+ type CarouselApi = UseEmblaCarouselType[1];
1498
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
1499
+ type CarouselOptions = UseCarouselParameters[0];
1500
+ type CarouselPlugin = UseCarouselParameters[1];
1501
+ type CarouselProps = {
1502
+ opts?: CarouselOptions;
1503
+ plugins?: CarouselPlugin;
1504
+ orientation?: "horizontal" | "vertical";
1505
+ setApi?: (api: CarouselApi) => void;
1506
+ };
1507
+ type CarouselContextProps = {
1508
+ carouselRef: ReturnType<typeof useEmblaCarousel>[0];
1509
+ api: ReturnType<typeof useEmblaCarousel>[1];
1510
+ scrollPrev: () => void;
1511
+ scrollNext: () => void;
1512
+ canScrollPrev: boolean;
1513
+ canScrollNext: boolean;
1514
+ selectedIndex: number;
1515
+ scrollSnaps: number[];
1516
+ scrollTo: (index: number) => void;
1517
+ } & CarouselProps;
1518
+ /**
1519
+ * Hook to access the carousel context.
1520
+ * Must be used within a <Carousel> component.
1521
+ */
1522
+ declare function useCarousel(): CarouselContextProps;
1523
+ /**
1524
+ * A carousel component built on top of Embla Carousel.
1525
+ * Provides context and state management for carousel functionality.
1526
+ * @example
1527
+ * <Carousel>
1528
+ * <CarouselContent>
1529
+ * <CarouselItem>...</CarouselItem>
1530
+ * </CarouselContent>
1531
+ * <CarouselPrevious />
1532
+ * <CarouselNext />
1533
+ * </Carousel>
1534
+ */
1535
+ declare const Carousel: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & React$1.RefAttributes<HTMLDivElement>>;
1536
+ /**
1537
+ * The viewport and container for carousel items.
1538
+ * Handles scrolling and layout of slides.
1539
+ */
1540
+ declare const CarouselContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1541
+ /**
1542
+ * A single slide within the carousel.
1543
+ */
1544
+ declare const CarouselItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1545
+ interface CarouselPreviousProps extends React$1.ComponentProps<"button"> {
1546
+ variant?: string;
1547
+ size?: string;
1548
+ }
1549
+ /**
1550
+ * Button to navigate to the previous slide.
1551
+ * Automatically disabled when there is no previous slide.
1552
+ */
1553
+ declare const CarouselPrevious: React$1.ForwardRefExoticComponent<Omit<CarouselPreviousProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1554
+ interface CarouselNextProps extends React$1.ComponentProps<"button"> {
1555
+ variant?: string;
1556
+ size?: string;
1557
+ }
1558
+ /**
1559
+ * Button to navigate to the next slide.
1560
+ * Automatically disabled when there is no next slide.
1561
+ */
1562
+ declare const CarouselNext: React$1.ForwardRefExoticComponent<Omit<CarouselNextProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
1563
+ /**
1564
+ * Navigation dots for the carousel.
1565
+ * Shows the current active slide and allows direct navigation.
1566
+ */
1567
+ declare const CarouselDots: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1568
+ /**
1569
+ * A text-based counter showing the current slide index and total slides.
1570
+ * Format: "Current / Total"
1571
+ */
1572
+ declare const CarouselCounter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
1573
+
1574
+ declare const THEMES: {
1575
+ readonly light: "";
1576
+ readonly dark: ".dark";
1577
+ };
1578
+ /**
1579
+ * Configuration for the chart.
1580
+ * Maps data keys to labels, icons, and colors/themes.
1581
+ */
1582
+ type ChartConfig = {
1583
+ [k in string]: {
1584
+ label?: React$1.ReactNode;
1585
+ icon?: React$1.ComponentType;
1586
+ } & ({
1587
+ color?: string;
1588
+ theme?: never;
1589
+ } | {
1590
+ color?: never;
1591
+ theme: Record<keyof typeof THEMES, string>;
1592
+ });
1593
+ };
1594
+ type ChartContextProps = {
1595
+ config: ChartConfig;
1596
+ };
1597
+ /**
1598
+ * Hook to access the chart context.
1599
+ * Must be used within a <ChartContainer>.
1600
+ */
1601
+ declare function useChart(): ChartContextProps;
1602
+ interface ChartContainerProps extends React$1.ComponentProps<"div"> {
1603
+ config: ChartConfig;
1604
+ children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
1605
+ }
1606
+ /**
1607
+ * A container for Recharts charts that provides the chart context and styling.
1608
+ * Handles the generation of CSS variables for chart colors based on the config.
1609
+ * @example
1610
+ * <ChartContainer config={chartConfig}>
1611
+ * <BarChart ... />
1612
+ * </ChartContainer>
1613
+ */
1614
+ declare const ChartContainer: React$1.ForwardRefExoticComponent<Omit<ChartContainerProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1615
+ /**
1616
+ * Component that generates and injects CSS variables for the chart colors.
1617
+ * Used internally by ChartContainer.
1618
+ */
1619
+ declare const ChartStyle: ({ id, config }: {
1620
+ id: string;
1621
+ config: ChartConfig;
1622
+ }) => react_jsx_runtime.JSX.Element | null;
1623
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
1624
+ type TooltipPayloadItem = {
1625
+ dataKey?: string | number;
1626
+ name?: string;
1627
+ value?: number | string;
1628
+ type?: string;
1629
+ color?: string;
1630
+ payload?: Record<string, unknown>;
1631
+ fill?: string;
1632
+ };
1633
+ type ChartTooltipContentProps = React$1.ComponentProps<"div"> & {
1634
+ active?: boolean;
1635
+ payload?: TooltipPayloadItem[];
1636
+ label?: string;
1637
+ labelFormatter?: (value: unknown, payload: TooltipPayloadItem[]) => React$1.ReactNode;
1638
+ labelClassName?: string;
1639
+ formatter?: (value: unknown, name: string, item: TooltipPayloadItem, index: number, payload: Record<string, unknown>) => React$1.ReactNode;
1640
+ color?: string;
1641
+ hideLabel?: boolean;
1642
+ hideIndicator?: boolean;
1643
+ indicator?: "line" | "dot" | "dashed";
1644
+ nameKey?: string;
1645
+ labelKey?: string;
1646
+ };
1647
+ /**
1648
+ * Custom tooltip content component for Recharts.
1649
+ * Displays the tooltip payload with labels, values, and indicators formatted according to the chart config.
1650
+ */
1651
+ declare const ChartTooltipContent: React$1.ForwardRefExoticComponent<Omit<ChartTooltipContentProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1652
+ declare const ChartLegend: typeof RechartsPrimitive.Legend;
1653
+ type LegendPayloadItem = {
1654
+ value?: string;
1655
+ dataKey?: string | number;
1656
+ type?: string;
1657
+ color?: string;
1658
+ };
1659
+ type ChartLegendContentProps = React$1.ComponentProps<"div"> & {
1660
+ payload?: LegendPayloadItem[];
1661
+ verticalAlign?: "top" | "bottom" | "middle";
1662
+ hideIcon?: boolean;
1663
+ nameKey?: string;
1664
+ };
1665
+ /**
1666
+ * Custom legend content component for Recharts.
1667
+ * Displays the legend payload with labels and indicators formatted according to the chart config.
1668
+ */
1669
+ declare const ChartLegendContent: React$1.ForwardRefExoticComponent<Omit<ChartLegendContentProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1670
+
1671
+ /**
1672
+ * The root component for the Dialog.
1673
+ */
1674
+ declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
1675
+ /**
1676
+ * The trigger that opens the dialog.
1677
+ */
1678
+ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
1679
+ /**
1680
+ * Portals the dialog content into a different part of the DOM.
1681
+ */
1682
+ declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
1683
+ /**
1684
+ * The close button for the dialog.
1685
+ */
1686
+ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
1687
+ /**
1688
+ * The overlay that covers the screen when the dialog is open.
1689
+ */
1690
+ declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1691
+ /**
1692
+ * The content of the dialog.
1693
+ */
1694
+ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1695
+ /**
1696
+ * The header area of the dialog.
1697
+ */
1698
+ declare const DialogHeader: {
1699
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1700
+ displayName: string;
1701
+ };
1702
+ /**
1703
+ * The footer area of the dialog.
1704
+ */
1705
+ declare const DialogFooter: {
1706
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
1707
+ displayName: string;
1708
+ };
1709
+ /**
1710
+ * The title of the dialog.
1711
+ */
1712
+ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
1713
+ /**
1714
+ * The description/body text of the dialog.
1715
+ */
1716
+ declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
1717
+
1718
+ interface ScrollytellingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onProgress"> {
1719
+ /** Callback when global progress changes */
1720
+ onScrollProgress?: (progress: number) => void;
1721
+ }
1722
+ /**
1723
+ * Root provider for scrollytelling. Tracks global scroll progress,
1724
+ * manages section registry, and provides context to child components.
1725
+ */
1726
+ declare const Scrollytelling: React$1.ForwardRefExoticComponent<ScrollytellingProps & React$1.RefAttributes<HTMLDivElement>>;
1727
+
1728
+ interface ScrollytellingTrackProps extends React$1.HTMLAttributes<HTMLDivElement> {
1729
+ /** Scroll snap behavior */
1730
+ snapType?: "none" | "mandatory" | "proximity";
1731
+ }
1732
+ /**
1733
+ * Container that holds scrollable sections. Optionally enables scroll snapping.
1734
+ */
1735
+ declare const ScrollytellingTrack: React$1.ForwardRefExoticComponent<ScrollytellingTrackProps & React$1.RefAttributes<HTMLDivElement>>;
1736
+
1737
+ interface ScrollytellingSectionProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onProgress"> {
1738
+ /** Unique section identifier (required) */
1739
+ id: string;
1740
+ /** Label for timeline/nav display */
1741
+ label?: string;
1742
+ /** Viewport heights to scroll while pinned (0 = no pinning) */
1743
+ pinDuration?: number;
1744
+ /** Minimum height when not pinned */
1745
+ minHeight?: string;
1746
+ /** Section background color */
1747
+ backgroundColor?: string;
1748
+ /** Callback with local progress (0-1) */
1749
+ onScrollProgress?: (progress: number) => void;
1750
+ }
1751
+ /**
1752
+ * A section within the scrollytelling experience.
1753
+ * Supports sticky pinning and provides local progress context.
1754
+ */
1755
+ declare const ScrollytellingSection: React$1.ForwardRefExoticComponent<ScrollytellingSectionProps & React$1.RefAttributes<HTMLDivElement>>;
1756
+
1757
+ interface ScrollytellingContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1758
+ /** Horizontal alignment */
1759
+ align?: "start" | "center" | "end";
1760
+ /** Vertical justification */
1761
+ justify?: "start" | "center" | "end";
1762
+ /** Maximum content width */
1763
+ maxWidth?: string;
1764
+ /** Content padding */
1765
+ padding?: string;
1766
+ }
1767
+ /**
1768
+ * Content wrapper with alignment and layout controls.
1769
+ */
1770
+ declare const ScrollytellingContent: React$1.ForwardRefExoticComponent<ScrollytellingContentProps & React$1.RefAttributes<HTMLDivElement>>;
1771
+
1772
+ /** Animation preset configurations for reveal effects */
1773
+ declare const animationPresets: {
1774
+ readonly fade: {
1775
+ readonly hidden: {
1776
+ readonly opacity: 0;
1777
+ };
1778
+ readonly visible: {
1779
+ readonly opacity: 1;
1780
+ };
1781
+ };
1782
+ readonly "fade-up": {
1783
+ readonly hidden: {
1784
+ readonly opacity: 0;
1785
+ readonly y: 20;
1786
+ };
1787
+ readonly visible: {
1788
+ readonly opacity: 1;
1789
+ readonly y: 0;
1790
+ };
1791
+ };
1792
+ readonly "fade-down": {
1793
+ readonly hidden: {
1794
+ readonly opacity: 0;
1795
+ readonly y: -20;
1796
+ };
1797
+ readonly visible: {
1798
+ readonly opacity: 1;
1799
+ readonly y: 0;
1800
+ };
1801
+ };
1802
+ readonly "fade-left": {
1803
+ readonly hidden: {
1804
+ readonly opacity: 0;
1805
+ readonly x: 20;
1806
+ };
1807
+ readonly visible: {
1808
+ readonly opacity: 1;
1809
+ readonly x: 0;
1810
+ };
1811
+ };
1812
+ readonly "fade-right": {
1813
+ readonly hidden: {
1814
+ readonly opacity: 0;
1815
+ readonly x: -20;
1816
+ };
1817
+ readonly visible: {
1818
+ readonly opacity: 1;
1819
+ readonly x: 0;
1820
+ };
1821
+ };
1822
+ readonly scale: {
1823
+ readonly hidden: {
1824
+ readonly opacity: 0;
1825
+ readonly scale: 0.8;
1826
+ };
1827
+ readonly visible: {
1828
+ readonly opacity: 1;
1829
+ readonly scale: 1;
1830
+ };
1831
+ };
1832
+ readonly "scale-up": {
1833
+ readonly hidden: {
1834
+ readonly opacity: 0;
1835
+ readonly scale: 0.5;
1836
+ };
1837
+ readonly visible: {
1838
+ readonly opacity: 1;
1839
+ readonly scale: 1;
1840
+ };
1841
+ };
1842
+ readonly blur: {
1843
+ readonly hidden: {
1844
+ readonly opacity: 0;
1845
+ readonly filter: "blur(10px)";
1846
+ };
1847
+ readonly visible: {
1848
+ readonly opacity: 1;
1849
+ readonly filter: "blur(0px)";
1850
+ };
1851
+ };
1852
+ readonly flip: {
1853
+ readonly hidden: {
1854
+ readonly opacity: 0;
1855
+ readonly rotateX: 90;
1856
+ };
1857
+ readonly visible: {
1858
+ readonly opacity: 1;
1859
+ readonly rotateX: 0;
1860
+ };
1861
+ };
1862
+ };
1863
+ type AnimationPreset = keyof typeof animationPresets;
1864
+
1865
+ interface ScrollytellingRevealProps {
1866
+ /** Progress point(s) to trigger animation. Single number or [start, end] range */
1867
+ trigger?: number | [number, number];
1868
+ /** Animation preset name */
1869
+ animation?: AnimationPreset;
1870
+ /** Animation duration in milliseconds */
1871
+ duration?: number;
1872
+ /** Delay before animation starts in milliseconds */
1873
+ delay?: number;
1874
+ /** CSS easing function */
1875
+ easing?: Easing;
1876
+ /** Stay revealed after trigger (default: true) */
1877
+ persist?: boolean;
1878
+ /** Additional CSS class names */
1879
+ className?: string;
1880
+ /** Inline styles */
1881
+ style?: React$1.CSSProperties;
1882
+ /** Child elements */
1883
+ children?: React$1.ReactNode;
1884
+ }
1885
+ /**
1886
+ * Reveals content with animation based on section scroll progress.
1887
+ */
1888
+ declare const ScrollytellingReveal: React$1.ForwardRefExoticComponent<ScrollytellingRevealProps & React$1.RefAttributes<HTMLDivElement>>;
1889
+
1890
+ /** Metadata for a registered section */
1891
+ interface SectionMeta {
1892
+ id: string;
1893
+ label?: string;
1894
+ element: HTMLElement;
1895
+ }
1896
+ /** Root scrollytelling context value */
1897
+ interface ScrollytellingContextValue {
1898
+ /** Global scroll progress (0-1) */
1899
+ progress: number;
1900
+ /** ID of the currently active section */
1901
+ activeSection: string | null;
1902
+ /** Scroll direction */
1903
+ direction: "up" | "down" | null;
1904
+ /** Whether reduced motion is preferred */
1905
+ reducedMotion: boolean;
1906
+ /** Navigate to a specific section by ID */
1907
+ goToSection: (id: string) => void;
1908
+ /** Array of registered sections */
1909
+ sections: SectionMeta[];
1910
+ /** Register a section with the context */
1911
+ registerSection: (meta: SectionMeta) => void;
1912
+ /** Unregister a section from the context */
1913
+ unregisterSection: (id: string) => void;
1914
+ }
1915
+ /**
1916
+ * Hook to access the root scrollytelling context.
1917
+ * Must be used within a <Scrollytelling /> component.
1918
+ */
1919
+ declare function useScrollytelling(): ScrollytellingContextValue;
1920
+ /** Per-section context value */
1921
+ interface SectionContextValue {
1922
+ /** Unique section identifier */
1923
+ id: string;
1924
+ /** Local progress within this section (0-1) */
1925
+ progress: number;
1926
+ /** Whether this section is currently active */
1927
+ isActive: boolean;
1928
+ /** Whether this section is currently pinned */
1929
+ isPinned: boolean;
1930
+ }
1931
+ /**
1932
+ * Hook to access the current section's context.
1933
+ * Must be used within a <ScrollytellingSection /> component.
1934
+ */
1935
+ declare function useScrollytellingSection(): SectionContextValue;
1936
+
1937
+ interface UseScrollProgressOptions {
1938
+ /** Scroll offset configuration [start, end] */
1939
+ offset?: [string, string];
1940
+ /** Callback fired when progress changes */
1941
+ onProgress?: (progress: number) => void;
1942
+ }
1943
+ interface UseScrollProgressReturn {
1944
+ /** Current progress value (0-1) */
1945
+ progress: number;
1946
+ /** Framer Motion motion value for direct animation binding */
1947
+ scrollYProgress: MotionValue<number>;
1948
+ }
1949
+ /**
1950
+ * Hook to track scroll progress within an element's viewport intersection.
1951
+ * Uses Framer Motion's useScroll for efficient GPU-accelerated tracking.
1952
+ *
1953
+ * @param elementRef - Ref to the element to track
1954
+ * @param options - Configuration options
1955
+ * @returns Progress value and motion value
1956
+ */
1957
+ declare function useScrollProgress(elementRef: React$1.RefObject<HTMLElement | null>, options?: UseScrollProgressOptions): UseScrollProgressReturn;
1958
+
1959
+ interface ScrollytellingBackgroundProps extends React$1.HTMLAttributes<HTMLDivElement> {
1960
+ /** Image or video source */
1961
+ src: string;
1962
+ /** Media type */
1963
+ type?: "image" | "video";
1964
+ /** Alt text for accessibility */
1965
+ alt?: string;
1966
+ /** Parallax speed (0 = fixed, 1 = normal, 0.5 = half speed) */
1967
+ parallax?: number;
1968
+ /** Background position */
1969
+ position?: string;
1970
+ /** Overlay color with opacity (e.g., 'rgba(0,0,0,0.5)') */
1971
+ overlay?: string;
1972
+ /** Object fit behavior */
1973
+ objectFit?: "cover" | "contain" | "fill";
1974
+ }
1975
+ declare const ScrollytellingBackground: React$1.ForwardRefExoticComponent<ScrollytellingBackgroundProps & React$1.RefAttributes<HTMLDivElement>>;
1976
+
1977
+ interface ScrollytellingCounterProps extends React$1.HTMLAttributes<HTMLSpanElement> {
1978
+ /** Starting value */
1979
+ from: number;
1980
+ /** Ending value */
1981
+ to: number;
1982
+ /** Progress range [start, end] */
1983
+ trigger: [number, number];
1984
+ /** Number format */
1985
+ format?: "standard" | "compact" | "currency" | "percent";
1986
+ /** Locale for formatting */
1987
+ locale?: string;
1988
+ /** Currency code if format='currency' */
1989
+ currency?: string;
1990
+ /** Decimal places */
1991
+ decimals?: number;
1992
+ /** Prefix (e.g., "$") */
1993
+ prefix?: string;
1994
+ /** Suffix (e.g., " users") */
1995
+ suffix?: string;
1996
+ /** Easing function */
1997
+ easing?: "linear" | "easeOut" | "easeInOut";
1998
+ }
1999
+ declare const ScrollytellingCounter: React$1.ForwardRefExoticComponent<ScrollytellingCounterProps & React$1.RefAttributes<HTMLSpanElement>>;
2000
+
2001
+ interface ScrollytellingHighlightProps extends React$1.HTMLAttributes<HTMLElement> {
2002
+ /** Text content to highlight */
2003
+ children: string;
2004
+ /** Progress range for highlight [start, end] */
2005
+ trigger: [number, number];
2006
+ /** Highlight granularity */
2007
+ mode?: "word" | "sentence" | "character";
2008
+ /** Highlighted text color */
2009
+ highlightColor?: string;
2010
+ /** Unhighlighted text color */
2011
+ baseColor?: string;
2012
+ /** Highlight background */
2013
+ highlightBg?: string;
2014
+ /** Typography element */
2015
+ as?: "p" | "span" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
2016
+ }
2017
+ declare const ScrollytellingHighlight: React$1.ForwardRefExoticComponent<ScrollytellingHighlightProps & React$1.RefAttributes<HTMLElement>>;
2018
+
2019
+ interface ScrollytellingTransitionProps extends React$1.HTMLAttributes<HTMLDivElement> {
2020
+ /** Transition effect */
2021
+ effect?: "crossfade" | "wipe-up" | "wipe-down" | "zoom" | "blur";
2022
+ /** Transition start/end as progress range */
2023
+ trigger?: [number, number];
2024
+ }
2025
+ declare const ScrollytellingTransition: React$1.ForwardRefExoticComponent<ScrollytellingTransitionProps & React$1.RefAttributes<HTMLDivElement>>;
2026
+
2027
+ interface ScrollytellingTimelineProps extends React$1.HTMLAttributes<HTMLDivElement> {
2028
+ /** Position on screen */
2029
+ position?: "left" | "right";
2030
+ /** Show section labels */
2031
+ showLabels?: boolean;
2032
+ /** Show progress line */
2033
+ showProgress?: boolean;
2034
+ /** Hide on mobile */
2035
+ hideOnMobile?: boolean;
2036
+ /** Offset from edge */
2037
+ offset?: string | number;
2038
+ }
2039
+ declare const ScrollytellingTimeline: React$1.ForwardRefExoticComponent<ScrollytellingTimelineProps & React$1.RefAttributes<HTMLDivElement>>;
2040
+
2041
+ interface ScrollytellingNavProps extends React$1.HTMLAttributes<HTMLElement> {
2042
+ /** Position */
2043
+ position?: "left" | "right" | "bottom";
2044
+ /** Nav style */
2045
+ variant?: "dots" | "lines" | "numbers";
2046
+ /** Show tooltips with section labels */
2047
+ tooltips?: boolean;
2048
+ /** Offset from edge */
2049
+ offset?: string | number;
2050
+ }
2051
+ declare const ScrollytellingNav: React$1.ForwardRefExoticComponent<ScrollytellingNavProps & React$1.RefAttributes<HTMLElement>>;
2052
+
2053
+ interface ScrollytellingDebugProps extends React$1.HTMLAttributes<HTMLDivElement> {
2054
+ /** Position of debug panel */
2055
+ position?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
2056
+ }
2057
+ declare const ScrollytellingDebug: React$1.ForwardRefExoticComponent<ScrollytellingDebugProps & React$1.RefAttributes<HTMLDivElement>>;
2058
+ /**
2059
+ * Section-level debug component.
2060
+ * Use inside a ScrollytellingSection to see section-specific debug info.
2061
+ */
2062
+ declare const ScrollytellingSectionDebug: React$1.ForwardRefExoticComponent<ScrollytellingDebugProps & React$1.RefAttributes<HTMLDivElement>>;
2063
+
2064
+ interface ScrollytellingMediaProps extends React$1.HTMLAttributes<HTMLDivElement> {
2065
+ /** Media source URL */
2066
+ src: string;
2067
+ /** Media type */
2068
+ type: "video" | "image" | "svg";
2069
+ /** Progress range for animation [start, end] */
2070
+ trigger?: [number, number];
2071
+ /** SVG animation type */
2072
+ animation?: "draw" | "reveal";
2073
+ /** Alt text for images */
2074
+ alt?: string;
2075
+ /** Poster image for video */
2076
+ poster?: string;
2077
+ /** Loop video within trigger range */
2078
+ loop?: boolean;
2079
+ /** Mobile behavior: 'poster' shows static image (default), 'scrub' enables full scrubbing */
2080
+ mobileMode?: "poster" | "scrub";
2081
+ }
2082
+ /**
2083
+ * Scroll-controlled media component for video scrubbing, SVG drawing, and image reveals.
2084
+ * Supports mobile poster fallback for battery optimization.
2085
+ *
2086
+ * @warning SVG loading uses dangerouslySetInnerHTML. Only use with trusted SVG sources.
2087
+ * For untrusted content, sanitize with DOMPurify before use.
2088
+ */
2089
+ declare const ScrollytellingMedia: React$1.ForwardRefExoticComponent<ScrollytellingMediaProps & React$1.RefAttributes<HTMLDivElement>>;
2090
+
2091
+ /**
2092
+ * The root component for the Select.
2093
+ */
2094
+ declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
2095
+ /**
2096
+ * Groups multiple Select items.
2097
+ */
2098
+ declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2099
+ /**
2100
+ * Displays the selected value.
2101
+ */
2102
+ declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
2103
+ interface SelectTriggerProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> {
2104
+ }
2105
+ /**
2106
+ * The trigger that opens the select dropdown.
2107
+ */
2108
+ declare const SelectTrigger: React$1.ForwardRefExoticComponent<SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2109
+ interface SelectContentProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Content> {
2110
+ }
2111
+ /**
2112
+ * The content that pops up when the select is triggered.
2113
+ */
2114
+ declare const SelectContent: React$1.ForwardRefExoticComponent<SelectContentProps & React$1.RefAttributes<HTMLDivElement>>;
2115
+ interface SelectItemProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Item> {
2116
+ }
2117
+ /**
2118
+ * An item within the select dropdown.
2119
+ */
2120
+ declare const SelectItem: React$1.ForwardRefExoticComponent<SelectItemProps & React$1.RefAttributes<HTMLDivElement>>;
2121
+ interface SelectLabelProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Label> {
2122
+ }
2123
+ /**
2124
+ * A label for a group of items in the select.
2125
+ */
2126
+ declare const SelectLabel: React$1.ForwardRefExoticComponent<SelectLabelProps & React$1.RefAttributes<HTMLDivElement>>;
2127
+ interface SelectSeparatorProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator> {
2128
+ }
2129
+ /**
2130
+ * A separator to visually divide items in the select.
2131
+ */
2132
+ declare const SelectSeparator: React$1.ForwardRefExoticComponent<SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
2133
+ interface SelectScrollUpButtonProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollUpButton> {
2134
+ }
2135
+ /**
2136
+ * Scroll up button for long select lists.
2137
+ */
2138
+ declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>>;
2139
+ interface SelectScrollDownButtonProps extends React$1.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollDownButton> {
2140
+ }
2141
+ /**
2142
+ * Scroll down button for long select lists.
2143
+ */
2144
+ declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>>;
2145
+
2146
+ type ToasterPosition = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
2147
+ interface ToasterProps extends React.ComponentPropsWithoutRef<typeof Toaster$1> {
2148
+ /** Position of the toasts */
2149
+ position?: ToasterPosition;
2150
+ /** Theme mode */
2151
+ theme?: "light" | "dark" | "system";
2152
+ /** Use richer colors for success/error */
2153
+ richColors?: boolean;
2154
+ /** Show close button on toasts */
2155
+ closeButton?: boolean;
2156
+ /** Offset from screen edges */
2157
+ offset?: string | number;
2158
+ /** Duration in milliseconds */
2159
+ duration?: number;
2160
+ /** Maximum visible toasts */
2161
+ visibleToasts?: number;
2162
+ /** Expand toasts on hover */
2163
+ expand?: boolean;
2164
+ }
2165
+ /**
2166
+ * Toast notification container.
2167
+ * Place once at your app root.
2168
+ *
2169
+ * @example
2170
+ * // In your root layout
2171
+ * <Toaster position="bottom-right" richColors />
2172
+ *
2173
+ * // Trigger toasts anywhere
2174
+ * import { toast } from "@nexa-ui-kit/core"
2175
+ * toast.success("Saved successfully!")
2176
+ */
2177
+ declare function Toaster({ position, theme, richColors, closeButton, offset, duration, visibleToasts, expand, ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
2178
+ declare namespace Toaster {
2179
+ var displayName: string;
2180
+ }
2181
+
2182
+ type StepperOrientation = "horizontal" | "vertical";
2183
+ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
2184
+ /** Controlled current step (0-indexed) */
2185
+ value?: number;
2186
+ /** Default step for uncontrolled usage */
2187
+ defaultValue?: number;
2188
+ /** Callback when step changes */
2189
+ onValueChange?: (value: number) => void;
2190
+ /** Orientation of the stepper */
2191
+ orientation?: StepperOrientation;
2192
+ /** If true, must complete steps in order */
2193
+ linear?: boolean;
2194
+ /** Whether the stepper is disabled */
2195
+ disabled?: boolean;
2196
+ }
2197
+ /**
2198
+ * Stepper component for multi-step flows.
2199
+ * @example
2200
+ * <Stepper defaultValue={0}>
2201
+ * <StepperList>
2202
+ * <StepperItem index={0}>
2203
+ * <StepperTrigger>Step 1</StepperTrigger>
2204
+ * </StepperItem>
2205
+ * <StepperSeparator />
2206
+ * <StepperItem index={1}>
2207
+ * <StepperTrigger>Step 2</StepperTrigger>
2208
+ * </StepperItem>
2209
+ * </StepperList>
2210
+ * <StepperContent index={0}>Content 1</StepperContent>
2211
+ * <StepperContent index={1}>Content 2</StepperContent>
2212
+ * </Stepper>
2213
+ */
2214
+ declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
2215
+ interface StepperListProps extends React$1.HTMLAttributes<HTMLDivElement> {
2216
+ }
2217
+ /**
2218
+ * Container for step indicators.
2219
+ */
2220
+ declare const StepperList: React$1.ForwardRefExoticComponent<StepperListProps & React$1.RefAttributes<HTMLDivElement>>;
2221
+ interface StepperItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
2222
+ /** Step index (0-based) */
2223
+ index: number;
2224
+ /** Whether this step is disabled */
2225
+ disabled?: boolean;
2226
+ }
2227
+ /**
2228
+ * Container for a single step indicator.
2229
+ */
2230
+ declare const StepperItem: React$1.ForwardRefExoticComponent<StepperItemProps & React$1.RefAttributes<HTMLDivElement>>;
2231
+ interface StepperTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2232
+ /** Custom icon to display instead of step number */
2233
+ icon?: React$1.ReactNode;
2234
+ }
2235
+ /**
2236
+ * Clickable step indicator button.
2237
+ */
2238
+ declare const StepperTrigger: React$1.ForwardRefExoticComponent<StepperTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2239
+ interface StepperSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
2240
+ }
2241
+ /**
2242
+ * Visual separator between steps.
2243
+ */
2244
+ declare const StepperSeparator: React$1.ForwardRefExoticComponent<StepperSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
2245
+ interface StepperContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2246
+ /** Step index this content belongs to */
2247
+ index: number;
2248
+ /** Force mount the content even when not active */
2249
+ forceMount?: boolean;
2250
+ }
2251
+ /**
2252
+ * Content panel for a step.
2253
+ */
2254
+ declare const StepperContent: React$1.ForwardRefExoticComponent<StepperContentProps & React$1.RefAttributes<HTMLDivElement>>;
2255
+ interface StepperTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2256
+ }
2257
+ /**
2258
+ * Title for a step.
2259
+ */
2260
+ declare const StepperTitle: React$1.ForwardRefExoticComponent<StepperTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2261
+ interface StepperDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
2262
+ }
2263
+ /**
2264
+ * Description for a step.
2265
+ */
2266
+ declare const StepperDescription: React$1.ForwardRefExoticComponent<StepperDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
2267
+ /**
2268
+ * Hook for programmatic stepper control.
2269
+ * Must be used within a Stepper component.
2270
+ */
2271
+ declare function useStepper(): {
2272
+ value: number;
2273
+ stepsCount: number;
2274
+ isFirst: boolean;
2275
+ isLast: boolean;
2276
+ goToStep: (step: number) => void;
2277
+ nextStep: () => void;
2278
+ prevStep: () => void;
2279
+ reset: () => void;
2280
+ };
2281
+
2282
+ interface TableProps extends React$1.HTMLAttributes<HTMLTableElement> {
2283
+ }
2284
+ declare const Table: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>>;
2285
+ interface TableHeaderProps extends React$1.HTMLAttributes<HTMLTableSectionElement> {
2286
+ }
2287
+ declare const TableHeader: React$1.ForwardRefExoticComponent<TableHeaderProps & React$1.RefAttributes<HTMLTableSectionElement>>;
2288
+ interface TableBodyProps extends React$1.HTMLAttributes<HTMLTableSectionElement> {
2289
+ }
2290
+ declare const TableBody: React$1.ForwardRefExoticComponent<TableBodyProps & React$1.RefAttributes<HTMLTableSectionElement>>;
2291
+ interface TableFooterProps extends React$1.HTMLAttributes<HTMLTableSectionElement> {
2292
+ }
2293
+ declare const TableFooter: React$1.ForwardRefExoticComponent<TableFooterProps & React$1.RefAttributes<HTMLTableSectionElement>>;
2294
+ interface TableRowProps extends React$1.HTMLAttributes<HTMLTableRowElement> {
2295
+ }
2296
+ declare const TableRow: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
2297
+ interface TableHeadProps extends React$1.ThHTMLAttributes<HTMLTableCellElement> {
2298
+ }
2299
+ declare const TableHead: React$1.ForwardRefExoticComponent<TableHeadProps & React$1.RefAttributes<HTMLTableCellElement>>;
2300
+ interface TableCellProps extends React$1.TdHTMLAttributes<HTMLTableCellElement> {
2301
+ }
2302
+ declare const TableCell: React$1.ForwardRefExoticComponent<TableCellProps & React$1.RefAttributes<HTMLTableCellElement>>;
2303
+ interface TableCaptionProps extends React$1.HTMLAttributes<HTMLTableCaptionElement> {
2304
+ }
2305
+ declare const TableCaption: React$1.ForwardRefExoticComponent<TableCaptionProps & React$1.RefAttributes<HTMLTableCaptionElement>>;
2306
+ interface TableToolbarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2307
+ }
2308
+ declare const TableToolbar: React$1.ForwardRefExoticComponent<TableToolbarProps & React$1.RefAttributes<HTMLDivElement>>;
2309
+ interface TablePaginationProps extends React$1.HTMLAttributes<HTMLDivElement> {
2310
+ }
2311
+ declare const TablePaginationSection: React$1.ForwardRefExoticComponent<TablePaginationProps & React$1.RefAttributes<HTMLDivElement>>;
2312
+
2313
+ declare const Pagination: {
2314
+ ({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
2315
+ displayName: string;
2316
+ };
2317
+ declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
2318
+ declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
2319
+ type PaginationLinkProps = {
2320
+ isActive?: boolean;
2321
+ } & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
2322
+ declare const PaginationLink: {
2323
+ ({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
2324
+ displayName: string;
2325
+ };
2326
+ declare const PaginationPrevious: {
2327
+ ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
2328
+ displayName: string;
2329
+ };
2330
+ declare const PaginationNext: {
2331
+ ({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
2332
+ displayName: string;
2333
+ };
2334
+ declare const PaginationEllipsis: {
2335
+ ({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
2336
+ displayName: string;
2337
+ };
2338
+
2339
+ /**
2340
+ * Root component for the Alert Dialog.
2341
+ * Unlike Dialog, Alert Dialog requires explicit user action (Action/Cancel) to close.
2342
+ * @example
2343
+ * <AlertDialog>
2344
+ * <AlertDialogTrigger>Delete</AlertDialogTrigger>
2345
+ * <AlertDialogContent>
2346
+ * <AlertDialogHeader>
2347
+ * <AlertDialogTitle>Are you sure?</AlertDialogTitle>
2348
+ * <AlertDialogDescription>This action cannot be undone.</AlertDialogDescription>
2349
+ * </AlertDialogHeader>
2350
+ * <AlertDialogFooter>
2351
+ * <AlertDialogCancel>Cancel</AlertDialogCancel>
2352
+ * <AlertDialogAction>Continue</AlertDialogAction>
2353
+ * </AlertDialogFooter>
2354
+ * </AlertDialogContent>
2355
+ * </AlertDialog>
2356
+ */
2357
+ declare const AlertDialog: React$1.FC<AlertDialogPrimitive.AlertDialogProps>;
2358
+ declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2359
+ declare const AlertDialogPortal: React$1.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
2360
+ declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2361
+ declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2362
+ declare const AlertDialogHeader: {
2363
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2364
+ displayName: string;
2365
+ };
2366
+ declare const AlertDialogFooter: {
2367
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2368
+ displayName: string;
2369
+ };
2370
+ declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
2371
+ declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
2372
+ declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2373
+ declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2374
+
2375
+ /**
2376
+ * Scroll Area with custom cross-browser scrollbars.
2377
+ * Scrollbars overlay content without taking up space.
2378
+ * @example
2379
+ * <ScrollArea className="h-[200px] w-[350px]">
2380
+ * <div className="p-4">{longContent}</div>
2381
+ * </ScrollArea>
2382
+ */
2383
+ declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2384
+ declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2385
+
2386
+ type ToggleGroupProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Root> & {
2387
+ /** Visual style variant applied to all items */
2388
+ variant?: ToggleVariant;
2389
+ /** Size preset applied to all items */
2390
+ size?: ToggleSize;
2391
+ };
2392
+ /**
2393
+ * A group of toggle items where single or multiple can be pressed.
2394
+ * @example
2395
+ * <ToggleGroup type="single">
2396
+ * <ToggleGroupItem value="left"><TextAlignLeft /></ToggleGroupItem>
2397
+ * <ToggleGroupItem value="center"><TextAlignCenter /></ToggleGroupItem>
2398
+ * <ToggleGroupItem value="right"><TextAlignRight /></ToggleGroupItem>
2399
+ * </ToggleGroup>
2400
+ */
2401
+ declare const ToggleGroup: React$1.ForwardRefExoticComponent<ToggleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2402
+ type ToggleGroupItemProps = React$1.ComponentPropsWithoutRef<typeof ToggleGroupPrimitive.Item> & {
2403
+ variant?: ToggleVariant;
2404
+ size?: ToggleSize;
2405
+ };
2406
+ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
2407
+ variant?: ToggleVariant;
2408
+ size?: ToggleSize;
2409
+ } & React$1.RefAttributes<HTMLButtonElement>>;
2410
+
2411
+ /**
2412
+ * Toolbar container with keyboard navigation (roving tabindex).
2413
+ * @example
2414
+ * <Toolbar>
2415
+ * <ToolbarToggleGroup type="single">
2416
+ * <ToolbarToggleItem value="bold">B</ToolbarToggleItem>
2417
+ * <ToolbarToggleItem value="italic">I</ToolbarToggleItem>
2418
+ * </ToolbarToggleGroup>
2419
+ * <ToolbarSeparator />
2420
+ * <ToolbarButton>Save</ToolbarButton>
2421
+ * <ToolbarLink href="#">Help</ToolbarLink>
2422
+ * </Toolbar>
2423
+ */
2424
+ declare const Toolbar: React$1.ForwardRefExoticComponent<Omit<ToolbarPrimitive.ToolbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2425
+ declare const ToolbarButton: React$1.ForwardRefExoticComponent<Omit<ToolbarPrimitive.ToolbarButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2426
+ declare const ToolbarLink: React$1.ForwardRefExoticComponent<Omit<ToolbarPrimitive.ToolbarLinkProps & React$1.RefAttributes<HTMLAnchorElement>, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
2427
+ declare const ToolbarSeparator: React$1.ForwardRefExoticComponent<Omit<ToolbarPrimitive.ToolbarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2428
+ declare const ToolbarToggleGroup: React$1.ForwardRefExoticComponent<(Omit<ToolbarPrimitive.ToolbarToggleGroupSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToolbarPrimitive.ToolbarToggleGroupMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & React$1.RefAttributes<HTMLDivElement>>;
2429
+ declare const ToolbarToggleItem: React$1.ForwardRefExoticComponent<Omit<ToolbarPrimitive.ToolbarToggleItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2430
+
2431
+ /**
2432
+ * Toast provider. Wrap your app root with this to enable toast notifications.
2433
+ * For a simpler alternative, see the Sonner (Toaster) component.
2434
+ */
2435
+ declare const ToastProvider: React$1.FC<ToastPrimitive.ToastProviderProps>;
2436
+ declare const ToastViewport: React$1.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastViewportProps & React$1.RefAttributes<HTMLOListElement>, "ref"> & React$1.RefAttributes<HTMLOListElement>>;
2437
+ type ToastVariant = "default" | "destructive";
2438
+ interface ToastProps extends React$1.ComponentPropsWithoutRef<typeof ToastPrimitive.Root> {
2439
+ variant?: ToastVariant;
2440
+ }
2441
+ /**
2442
+ * Individual toast notification.
2443
+ * @example
2444
+ * <Toast variant="destructive">
2445
+ * <ToastTitle>Error</ToastTitle>
2446
+ * <ToastDescription>Something went wrong.</ToastDescription>
2447
+ * </Toast>
2448
+ */
2449
+ declare const Toast: React$1.ForwardRefExoticComponent<ToastProps & React$1.RefAttributes<HTMLLIElement>>;
2450
+ declare const ToastAction: React$1.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2451
+ declare const ToastClose: React$1.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
2452
+ declare const ToastTitle: React$1.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastTitleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2453
+ declare const ToastDescription: React$1.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastDescriptionProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2454
+ type ToastActionElement = React$1.ReactElement<typeof ToastAction>;
2455
+ type ToasterToast = ToastProps & {
2456
+ id: string;
2457
+ title?: React$1.ReactNode;
2458
+ description?: React$1.ReactNode;
2459
+ action?: ToastActionElement;
2460
+ };
2461
+ declare function toast({ ...props }: Omit<ToasterToast, "id">): {
2462
+ id: string;
2463
+ dismiss: () => void;
2464
+ update: (props: Partial<ToasterToast>) => void;
2465
+ };
2466
+ declare function useToast(): {
2467
+ toast: typeof toast;
2468
+ dismiss: (toastId?: string) => void;
2469
+ toasts: ToasterToast[];
2470
+ };
2471
+
2472
+ type AlertVariant = "default" | "destructive" | "warning" | "info";
2473
+ interface AlertProps extends React$1.HTMLAttributes<HTMLDivElement> {
2474
+ variant?: AlertVariant;
2475
+ }
2476
+ /**
2477
+ * Alert component for displaying important messages.
2478
+ * @example
2479
+ * <Alert variant="destructive">
2480
+ * <AlertTitle>Error</AlertTitle>
2481
+ * <AlertDescription>Something went wrong.</AlertDescription>
2482
+ * </Alert>
2483
+ */
2484
+ declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
2485
+ interface AlertTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2486
+ }
2487
+ declare const AlertTitle: React$1.ForwardRefExoticComponent<AlertTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2488
+ interface AlertDescriptionProps extends React$1.HTMLAttributes<HTMLDivElement> {
2489
+ }
2490
+ declare const AlertDescription: React$1.ForwardRefExoticComponent<AlertDescriptionProps & React$1.RefAttributes<HTMLDivElement>>;
2491
+
2492
+ declare const Sheet: React$1.FC<DialogPrimitive.DialogProps>;
2493
+ declare const SheetTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2494
+ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
2495
+ declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
2496
+ declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2497
+ type SheetSide = "top" | "bottom" | "left" | "right";
2498
+ interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
2499
+ side?: SheetSide;
2500
+ }
2501
+ declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
2502
+ declare const SheetHeader: {
2503
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2504
+ displayName: string;
2505
+ };
2506
+ declare const SheetFooter: {
2507
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
2508
+ displayName: string;
2509
+ };
2510
+ declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
2511
+ declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
2512
+
2513
+ interface EmptyStateProps extends React$1.HTMLAttributes<HTMLDivElement> {
2514
+ }
2515
+ /**
2516
+ * Container for empty state displays.
2517
+ * @example
2518
+ * <EmptyState>
2519
+ * <EmptyStateIcon><InboxIcon /></EmptyStateIcon>
2520
+ * <EmptyStateTitle>No results</EmptyStateTitle>
2521
+ * <EmptyStateDescription>Try adjusting your search.</EmptyStateDescription>
2522
+ * <EmptyStateAction><Button>Create new</Button></EmptyStateAction>
2523
+ * </EmptyState>
2524
+ */
2525
+ declare const EmptyState: React$1.ForwardRefExoticComponent<EmptyStateProps & React$1.RefAttributes<HTMLDivElement>>;
2526
+ interface EmptyStateIconProps extends React$1.HTMLAttributes<HTMLDivElement> {
2527
+ }
2528
+ declare const EmptyStateIcon: React$1.ForwardRefExoticComponent<EmptyStateIconProps & React$1.RefAttributes<HTMLDivElement>>;
2529
+ interface EmptyStateTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2530
+ }
2531
+ declare const EmptyStateTitle: React$1.ForwardRefExoticComponent<EmptyStateTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2532
+ interface EmptyStateDescriptionProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
2533
+ }
2534
+ declare const EmptyStateDescription: React$1.ForwardRefExoticComponent<EmptyStateDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
2535
+ interface EmptyStateActionProps extends React$1.HTMLAttributes<HTMLDivElement> {
2536
+ }
2537
+ declare const EmptyStateAction: React$1.ForwardRefExoticComponent<EmptyStateActionProps & React$1.RefAttributes<HTMLDivElement>>;
2538
+
2539
+ interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
2540
+ /** Maximum number of avatars to show before truncating */
2541
+ max?: number;
2542
+ /** Size applied to the overflow indicator */
2543
+ size?: AvatarSize;
2544
+ }
2545
+ /**
2546
+ * Groups multiple Avatar components with optional overflow.
2547
+ * @example
2548
+ * <AvatarGroup max={3}>
2549
+ * <Avatar src="..." fallback="A" />
2550
+ * <Avatar src="..." fallback="B" />
2551
+ * <Avatar src="..." fallback="C" />
2552
+ * <Avatar src="..." fallback="D" />
2553
+ * </AvatarGroup>
2554
+ */
2555
+ declare const AvatarGroup: React$1.ForwardRefExoticComponent<AvatarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2556
+
2557
+ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2558
+ }
2559
+ /**
2560
+ * Card component for displaying statistics.
2561
+ * @example
2562
+ * <StatCard>
2563
+ * <StatIcon><DollarSign /></StatIcon>
2564
+ * <StatLabel>Revenue</StatLabel>
2565
+ * <StatValue>$12,345</StatValue>
2566
+ * <StatTrend direction="up">+12%</StatTrend>
2567
+ * </StatCard>
2568
+ */
2569
+ declare const StatCard: React$1.ForwardRefExoticComponent<StatCardProps & React$1.RefAttributes<HTMLDivElement>>;
2570
+ interface StatValueProps extends React$1.HTMLAttributes<HTMLDivElement> {
2571
+ }
2572
+ declare const StatValue: React$1.ForwardRefExoticComponent<StatValueProps & React$1.RefAttributes<HTMLDivElement>>;
2573
+ interface StatLabelProps extends React$1.HTMLAttributes<HTMLDivElement> {
2574
+ }
2575
+ declare const StatLabel: React$1.ForwardRefExoticComponent<StatLabelProps & React$1.RefAttributes<HTMLDivElement>>;
2576
+ type StatTrendDirection = "up" | "down" | "neutral";
2577
+ interface StatTrendProps extends React$1.HTMLAttributes<HTMLSpanElement> {
2578
+ direction?: StatTrendDirection;
2579
+ }
2580
+ declare const StatTrend: React$1.ForwardRefExoticComponent<StatTrendProps & React$1.RefAttributes<HTMLSpanElement>>;
2581
+ interface StatIconProps extends React$1.HTMLAttributes<HTMLDivElement> {
2582
+ }
2583
+ declare const StatIcon: React$1.ForwardRefExoticComponent<StatIconProps & React$1.RefAttributes<HTMLDivElement>>;
2584
+
2585
+ interface NumberInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
2586
+ value?: number;
2587
+ defaultValue?: number;
2588
+ onChange?: (value: number) => void;
2589
+ min?: number;
2590
+ max?: number;
2591
+ step?: number;
2592
+ disabled?: boolean;
2593
+ }
2594
+ /**
2595
+ * Number input with increment/decrement buttons and keyboard support.
2596
+ * @example
2597
+ * <NumberInput value={count} onChange={setCount} min={0} max={100}>
2598
+ * <NumberInputDecrement>-</NumberInputDecrement>
2599
+ * <NumberInputField />
2600
+ * <NumberInputIncrement>+</NumberInputIncrement>
2601
+ * </NumberInput>
2602
+ */
2603
+ declare const NumberInput: React$1.ForwardRefExoticComponent<NumberInputProps & React$1.RefAttributes<HTMLDivElement>>;
2604
+ interface NumberInputFieldProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type"> {
2605
+ }
2606
+ declare const NumberInputField: React$1.ForwardRefExoticComponent<NumberInputFieldProps & React$1.RefAttributes<HTMLInputElement>>;
2607
+ interface NumberInputIncrementProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2608
+ }
2609
+ declare const NumberInputIncrement: React$1.ForwardRefExoticComponent<NumberInputIncrementProps & React$1.RefAttributes<HTMLButtonElement>>;
2610
+ interface NumberInputDecrementProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2611
+ }
2612
+ declare const NumberInputDecrement: React$1.ForwardRefExoticComponent<NumberInputDecrementProps & React$1.RefAttributes<HTMLButtonElement>>;
2613
+
2614
+ type InputOTPProps = OTPInputProps;
2615
+ /**
2616
+ * OTP input component for verification codes.
2617
+ * @example
2618
+ * <InputOTP maxLength={6}>
2619
+ * <InputOTPGroup>
2620
+ * <InputOTPSlot index={0} />
2621
+ * <InputOTPSlot index={1} />
2622
+ * <InputOTPSlot index={2} />
2623
+ * </InputOTPGroup>
2624
+ * <InputOTPSeparator />
2625
+ * <InputOTPGroup>
2626
+ * <InputOTPSlot index={3} />
2627
+ * <InputOTPSlot index={4} />
2628
+ * <InputOTPSlot index={5} />
2629
+ * </InputOTPGroup>
2630
+ * </InputOTP>
2631
+ */
2632
+ declare const InputOTP: React$1.ForwardRefExoticComponent<OTPInputProps & React$1.RefAttributes<HTMLInputElement>>;
2633
+ interface InputOTPGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
2634
+ }
2635
+ declare const InputOTPGroup: React$1.ForwardRefExoticComponent<InputOTPGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2636
+ interface InputOTPSlotProps extends React$1.HTMLAttributes<HTMLDivElement> {
2637
+ index: number;
2638
+ }
2639
+ declare const InputOTPSlot: React$1.ForwardRefExoticComponent<InputOTPSlotProps & React$1.RefAttributes<HTMLDivElement>>;
2640
+ interface InputOTPSeparatorProps extends React$1.HTMLAttributes<HTMLDivElement> {
2641
+ }
2642
+ declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<InputOTPSeparatorProps & React$1.RefAttributes<HTMLDivElement>>;
2643
+
2644
+ interface ComboboxProps {
2645
+ open?: boolean;
2646
+ defaultOpen?: boolean;
2647
+ onOpenChange?: (open: boolean) => void;
2648
+ value?: string;
2649
+ defaultValue?: string;
2650
+ onValueChange?: (value: string) => void;
2651
+ children: React$1.ReactNode;
2652
+ }
2653
+ /**
2654
+ * Searchable dropdown built on Command + Popover.
2655
+ * @example
2656
+ * <Combobox value={value} onValueChange={setValue}>
2657
+ * <ComboboxTrigger>Select framework...</ComboboxTrigger>
2658
+ * <ComboboxContent>
2659
+ * <ComboboxInput placeholder="Search..." />
2660
+ * <ComboboxEmpty>No results.</ComboboxEmpty>
2661
+ * <ComboboxList>
2662
+ * <ComboboxItem value="react">React</ComboboxItem>
2663
+ * </ComboboxList>
2664
+ * </ComboboxContent>
2665
+ * </Combobox>
2666
+ */
2667
+ declare const Combobox: React$1.FC<ComboboxProps>;
2668
+ interface ComboboxTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2669
+ }
2670
+ declare const ComboboxTrigger: React$1.ForwardRefExoticComponent<ComboboxTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2671
+ interface ComboboxContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2672
+ }
2673
+ declare const ComboboxContent: React$1.ForwardRefExoticComponent<ComboboxContentProps & React$1.RefAttributes<HTMLDivElement>>;
2674
+ interface ComboboxInputProps extends React$1.ComponentPropsWithoutRef<typeof CommandInput> {
2675
+ }
2676
+ declare const ComboboxInput: React$1.ForwardRefExoticComponent<ComboboxInputProps & React$1.RefAttributes<HTMLInputElement>>;
2677
+ interface ComboboxEmptyProps extends React$1.ComponentPropsWithoutRef<typeof CommandEmpty> {
2678
+ }
2679
+ declare const ComboboxEmpty: React$1.ForwardRefExoticComponent<ComboboxEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
2680
+ interface ComboboxListProps extends React$1.ComponentPropsWithoutRef<typeof CommandList> {
2681
+ }
2682
+ declare const ComboboxList: React$1.ForwardRefExoticComponent<ComboboxListProps & React$1.RefAttributes<HTMLDivElement>>;
2683
+ interface ComboboxItemProps extends React$1.ComponentPropsWithoutRef<typeof CommandItem> {
2684
+ value: string;
2685
+ }
2686
+ declare const ComboboxItem: React$1.ForwardRefExoticComponent<ComboboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
2687
+ interface ComboboxGroupProps extends React$1.ComponentPropsWithoutRef<typeof CommandGroup> {
2688
+ }
2689
+ declare const ComboboxGroup: React$1.ForwardRefExoticComponent<ComboboxGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2690
+
2691
+ interface DatePickerProps {
2692
+ value?: Date;
2693
+ onChange?: (date: Date | undefined) => void;
2694
+ disabled?: boolean;
2695
+ placeholder?: string;
2696
+ /** date-fns format string for display */
2697
+ formatStr?: string;
2698
+ children?: React$1.ReactNode;
2699
+ }
2700
+ /**
2701
+ * Date picker composing Calendar + Popover.
2702
+ * @example
2703
+ * <DatePicker value={date} onChange={setDate}>
2704
+ * <DatePickerTrigger />
2705
+ * <DatePickerContent />
2706
+ * </DatePicker>
2707
+ */
2708
+ declare const DatePicker: React$1.FC<DatePickerProps>;
2709
+ interface DatePickerTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2710
+ }
2711
+ declare const DatePickerTrigger: React$1.ForwardRefExoticComponent<DatePickerTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2712
+ interface DatePickerContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2713
+ }
2714
+ declare const DatePickerContent: React$1.ForwardRefExoticComponent<DatePickerContentProps & React$1.RefAttributes<HTMLDivElement>>;
2715
+
2716
+ interface MultiSelectProps {
2717
+ value?: string[];
2718
+ defaultValue?: string[];
2719
+ onValueChange?: (value: string[]) => void;
2720
+ max?: number;
2721
+ children: React$1.ReactNode;
2722
+ }
2723
+ /**
2724
+ * Multi-value searchable select built on Command + Popover + Badge.
2725
+ * @example
2726
+ * <MultiSelect value={selected} onValueChange={setSelected}>
2727
+ * <MultiSelectTrigger placeholder="Select items..." />
2728
+ * <MultiSelectContent>
2729
+ * <MultiSelectInput placeholder="Search..." />
2730
+ * <MultiSelectEmpty>No results.</MultiSelectEmpty>
2731
+ * <MultiSelectList>
2732
+ * <MultiSelectItem value="react">React</MultiSelectItem>
2733
+ * <MultiSelectItem value="vue">Vue</MultiSelectItem>
2734
+ * </MultiSelectList>
2735
+ * </MultiSelectContent>
2736
+ * </MultiSelect>
2737
+ */
2738
+ declare const MultiSelect: React$1.FC<MultiSelectProps>;
2739
+ interface MultiSelectTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2740
+ placeholder?: string;
2741
+ }
2742
+ declare const MultiSelectTrigger: React$1.ForwardRefExoticComponent<MultiSelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2743
+ interface MultiSelectContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2744
+ }
2745
+ declare const MultiSelectContent: React$1.ForwardRefExoticComponent<MultiSelectContentProps & React$1.RefAttributes<HTMLDivElement>>;
2746
+ interface MultiSelectInputProps extends React$1.ComponentPropsWithoutRef<typeof CommandInput> {
2747
+ }
2748
+ declare const MultiSelectInput: React$1.ForwardRefExoticComponent<MultiSelectInputProps & React$1.RefAttributes<HTMLInputElement>>;
2749
+ interface MultiSelectEmptyProps extends React$1.ComponentPropsWithoutRef<typeof CommandEmpty> {
2750
+ }
2751
+ declare const MultiSelectEmpty: React$1.ForwardRefExoticComponent<MultiSelectEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
2752
+ interface MultiSelectListProps extends React$1.ComponentPropsWithoutRef<typeof CommandList> {
2753
+ }
2754
+ declare const MultiSelectList: React$1.ForwardRefExoticComponent<MultiSelectListProps & React$1.RefAttributes<HTMLDivElement>>;
2755
+ interface MultiSelectItemProps extends React$1.ComponentPropsWithoutRef<typeof CommandItem> {
2756
+ value: string;
2757
+ }
2758
+ declare const MultiSelectItem: React$1.ForwardRefExoticComponent<MultiSelectItemProps & React$1.RefAttributes<HTMLDivElement>>;
2759
+ interface MultiSelectGroupProps extends React$1.ComponentPropsWithoutRef<typeof CommandGroup> {
2760
+ }
2761
+ declare const MultiSelectGroup: React$1.ForwardRefExoticComponent<MultiSelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2762
+
2763
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionMultipleProps, type AccordionProps, type AccordionSingleProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, type AnimationPreset, AspectRatio, type AspectRatioProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, CalendarDayButton, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Carousel, type CarouselApi, CarouselContent, CarouselCounter, CarouselDots, CarouselItem, CarouselNext, type CarouselNextProps, type CarouselOptions, type CarouselPlugin, CarouselPrevious, type CarouselPreviousProps, type ChartConfig, ChartContainer, type ChartContainerProps, ChartLegend, ChartLegendContent, type ChartLegendContentProps, ChartStyle, ChartTooltip, ChartTooltipContent, type ChartTooltipContentProps, CheckIcon, type CheckIconProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Combobox, ComboboxContent, type ComboboxContentProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, type ComboboxGroupProps, ComboboxInput, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxListProps, type ComboboxProps, ComboboxTrigger, type ComboboxTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, DatePicker, DatePickerContent, type DatePickerContentProps, type DatePickerProps, DatePickerTrigger, type DatePickerTriggerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, EmptyState, EmptyStateAction, type EmptyStateActionProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, Field, FieldContent, FieldDescription, FieldError, type FieldErrorProps, FieldGroup, FieldLabel, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, type HoverCardAlign, HoverCardArrow, type HoverCardArrowProps, HoverCardContent, type HoverCardContentProps, type HoverCardProps, type HoverCardSide, HoverCardTrigger, type HoverCardTriggerProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPGroupProps, type InputOTPProps, InputOTPSeparator, type InputOTPSeparatorProps, InputOTPSlot, type InputOTPSlotProps, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, type ItemMediaProps, type ItemProps, ItemSeparator, ItemTitle, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, type LabelProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, type MenubarItemProps, MenubarLabel, type MenubarLabelProps, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, type MenubarSubTriggerProps, MenubarTrigger, MultiSelect, MultiSelectContent, type MultiSelectContentProps, MultiSelectEmpty, type MultiSelectEmptyProps, MultiSelectGroup, type MultiSelectGroupProps, MultiSelectInput, type MultiSelectInputProps, MultiSelectItem, type MultiSelectItemProps, MultiSelectList, type MultiSelectListProps, type MultiSelectProps, MultiSelectTrigger, type MultiSelectTriggerProps, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NumberInput, NumberInputDecrement, type NumberInputDecrementProps, NumberInputField, type NumberInputFieldProps, NumberInputIncrement, type NumberInputIncrementProps, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, type PopoverAlign, PopoverAnchor, type PopoverAnchorProps, PopoverArrow, type PopoverArrowProps, PopoverContent, type PopoverContentProps, type PopoverProps, type PopoverSide, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ScrollArea, ScrollBar, Scrollytelling, ScrollytellingBackground, type ScrollytellingBackgroundProps, ScrollytellingContent, type ScrollytellingContentProps, type ScrollytellingContextValue, ScrollytellingCounter, type ScrollytellingCounterProps, ScrollytellingDebug, type ScrollytellingDebugProps, ScrollytellingHighlight, type ScrollytellingHighlightProps, ScrollytellingMedia, type ScrollytellingMediaProps, ScrollytellingNav, type ScrollytellingNavProps, type ScrollytellingProps, ScrollytellingReveal, type ScrollytellingRevealProps, ScrollytellingSection, ScrollytellingSectionDebug, type ScrollytellingSectionProps, ScrollytellingTimeline, type ScrollytellingTimelineProps, ScrollytellingTrack, type ScrollytellingTrackProps, ScrollytellingTransition, type ScrollytellingTransitionProps, type SectionContextValue, type SectionMeta, Select, SelectContent, type SelectContentProps, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, type SheetSide, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInset, type SidebarInsetProps, SidebarMenuItem, type SidebarMenuItemProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarTrigger, type SidebarTriggerProps, Skeleton, type SkeletonProps, Slider, type SliderOrientation, type SliderProps, Spinner, type SpinnerProps, StatCard, type StatCardProps, StatIcon, type StatIconProps, StatLabel, type StatLabelProps, StatTrend, type StatTrendDirection, type StatTrendProps, StatValue, type StatValueProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerProps, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TablePaginationSection as TablePagination, type TablePaginationProps, type TableProps, TableRow, type TableRowProps, TableToolbar, type TableToolbarProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, type TextareaSize, type TextareaVariant, Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, type ToastVariant, ToastViewport, Toaster, type ToasterPosition, type ToasterProps, type ToasterToast, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, ToolbarButton, ToolbarLink, ToolbarSeparator, ToolbarToggleGroup, ToolbarToggleItem, Tooltip, type TooltipAlign, TooltipArrow, type TooltipArrowProps, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, TooltipTrigger, type TooltipTriggerProps, type UseScrollProgressOptions, type UseScrollProgressReturn, animationPresets, fieldVariants, inputGroupAddonVariants, inputGroupButtonVariants, itemMediaVariants, itemVariants, toast as toastFn, useCarousel, useChart, useFormField, useScrollProgress, useScrollytelling, useScrollytellingSection, useSidebar, useStepper, useToast };