@pixonui/react 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1483 @@
1
+ import * as React$1 from 'react';
2
+ import React__default, { RefObject, FormEvent, ReactNode } from 'react';
3
+ import * as class_variance_authority_types from 'class-variance-authority/types';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as react_jsx_runtime from 'react/jsx-runtime';
6
+ import { ClassValue } from 'clsx';
7
+
8
+ interface PrimaryButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
9
+ children: React__default.ReactNode;
10
+ leftIcon?: React__default.ReactNode;
11
+ rightIcon?: React__default.ReactNode;
12
+ }
13
+ declare const PrimaryButton: React__default.ForwardRefExoticComponent<PrimaryButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
14
+
15
+ declare const buttonVariants: (props?: ({
16
+ variant?: "alert" | "primary" | "secondary" | "outline" | "ghost" | "danger" | "success" | null | undefined;
17
+ size?: "sm" | "md" | "lg" | "icon" | null | undefined;
18
+ shape?: "default" | "pill" | "square" | null | undefined;
19
+ shadow?: boolean | null | undefined;
20
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
21
+ interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
22
+ /** Whether the button should be rendered as a child component using Slot */
23
+ asChild?: boolean;
24
+ /** Icon to display on the left side of the button text */
25
+ leftIcon?: React__default.ReactNode;
26
+ /** Icon to display on the right side of the button text */
27
+ rightIcon?: React__default.ReactNode;
28
+ /** Whether the button is in a loading state, showing a spinner and disabling interaction */
29
+ isLoading?: boolean;
30
+ }
31
+ /**
32
+ * A versatile button component with multiple variants, sizes, and states.
33
+ * Supports glassmorphism, gradients, and icons.
34
+ */
35
+ declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
36
+
37
+ interface GlowButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
38
+ children: React__default.ReactNode;
39
+ leftIcon?: React__default.ReactNode;
40
+ rightIcon?: React__default.ReactNode;
41
+ }
42
+ declare const GlowButton: React__default.ForwardRefExoticComponent<GlowButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
43
+
44
+ interface MetricCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
45
+ accent?: 'teal' | 'amber' | 'violet' | 'blue' | 'rose' | 'emerald' | 'indigo';
46
+ icon: React__default.ReactNode;
47
+ value: React__default.ReactNode;
48
+ subtext?: React__default.ReactNode;
49
+ showWave?: boolean;
50
+ onClick?: () => void;
51
+ }
52
+ declare const MetricCard: React__default.ForwardRefExoticComponent<MetricCardProps & React__default.RefAttributes<HTMLDivElement>>;
53
+
54
+ interface TextProps extends React__default.HTMLAttributes<HTMLElement> {
55
+ as?: 'p' | 'span' | 'div' | 'label' | 'code';
56
+ variant?: 'default' | 'muted' | 'subtle' | 'lead' | 'error' | 'success' | 'warning' | 'info';
57
+ size?: 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl';
58
+ weight?: 'light' | 'normal' | 'medium' | 'semibold' | 'bold';
59
+ code?: boolean;
60
+ children: React__default.ReactNode;
61
+ }
62
+ declare const Text: React__default.ForwardRefExoticComponent<TextProps & React__default.RefAttributes<HTMLElement>>;
63
+
64
+ interface HeadingProps extends React__default.HTMLAttributes<HTMLHeadingElement> {
65
+ as?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
66
+ weight?: 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black';
67
+ children: React__default.ReactNode;
68
+ }
69
+ declare const Heading: React__default.ForwardRefExoticComponent<HeadingProps & React__default.RefAttributes<HTMLHeadingElement>>;
70
+
71
+ interface TextGradientProps extends React__default.HTMLAttributes<HTMLSpanElement> {
72
+ /**
73
+ * Starting color (Tailwind class)
74
+ * @default 'from-blue-500'
75
+ */
76
+ from?: string;
77
+ /**
78
+ * Ending color (Tailwind class)
79
+ * @default 'to-purple-500'
80
+ */
81
+ to?: string;
82
+ /**
83
+ * Middle color (Tailwind class)
84
+ */
85
+ via?: string;
86
+ /**
87
+ * Gradient direction
88
+ * @default 'r'
89
+ */
90
+ direction?: 'r' | 'l' | 't' | 'b' | 'tr' | 'tl' | 'br' | 'bl';
91
+ /**
92
+ * Enable animated gradient shift
93
+ * @default false
94
+ */
95
+ animate?: boolean;
96
+ }
97
+ declare const TextGradient: React__default.ForwardRefExoticComponent<TextGradientProps & React__default.RefAttributes<HTMLSpanElement>>;
98
+
99
+ interface ShinyTextProps extends React__default.HTMLAttributes<HTMLSpanElement> {
100
+ /**
101
+ * The color of the shimmer effect
102
+ * @default 'rgba(255,255,255,0.3)'
103
+ */
104
+ shimmerColor?: string;
105
+ /**
106
+ * Duration of the animation
107
+ * @default '2s'
108
+ */
109
+ duration?: string;
110
+ /**
111
+ * Base text color
112
+ * @default 'currentColor'
113
+ */
114
+ baseColor?: string;
115
+ }
116
+ declare const ShinyText: React__default.ForwardRefExoticComponent<ShinyTextProps & React__default.RefAttributes<HTMLSpanElement>>;
117
+
118
+ interface HeroTextProps extends React__default.HTMLAttributes<HTMLDivElement> {
119
+ /**
120
+ * The main title text
121
+ */
122
+ title: string;
123
+ /**
124
+ * Text to be highlighted with a gradient
125
+ */
126
+ highlight?: string;
127
+ /**
128
+ * Subtitle text below the main title
129
+ */
130
+ subtitle?: string;
131
+ /**
132
+ * Tailwind gradient classes for the highlight
133
+ * @default 'from-blue-400 via-indigo-500 to-purple-600'
134
+ */
135
+ gradient?: string;
136
+ /**
137
+ * Enable entrance animation
138
+ * @default true
139
+ */
140
+ animate?: boolean;
141
+ /**
142
+ * Add a subtle glow effect behind the highlighted text
143
+ * @default true
144
+ */
145
+ glow?: boolean;
146
+ }
147
+ declare const HeroText: {
148
+ ({ title, highlight, subtitle, gradient, animate, glow, className, ...props }: HeroTextProps): react_jsx_runtime.JSX.Element;
149
+ displayName: string;
150
+ };
151
+
152
+ interface LetterPullupProps extends React__default.HTMLAttributes<HTMLDivElement> {
153
+ /**
154
+ * The text to animate
155
+ */
156
+ text: string;
157
+ /**
158
+ * Delay between each letter animation in seconds
159
+ * @default 0.05
160
+ */
161
+ delay?: number;
162
+ }
163
+ declare const LetterPullup: {
164
+ ({ text, delay, className, ...props }: LetterPullupProps): react_jsx_runtime.JSX.Element;
165
+ displayName: string;
166
+ };
167
+
168
+ interface LabelProps extends React__default.LabelHTMLAttributes<HTMLLabelElement> {
169
+ required?: boolean;
170
+ }
171
+ declare const Label: React__default.ForwardRefExoticComponent<LabelProps & React__default.RefAttributes<HTMLLabelElement>>;
172
+
173
+ declare const inputVariants: (props?: ({
174
+ hasError?: boolean | null | undefined;
175
+ hasLeftIcon?: boolean | null | undefined;
176
+ hasRightIcon?: boolean | null | undefined;
177
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
178
+ interface TextInputProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'size'>, Omit<VariantProps<typeof inputVariants>, 'hasError'> {
179
+ /** Label text displayed above the input */
180
+ label?: string;
181
+ /** Error message displayed below the input. If provided, the input will show an error state. */
182
+ error?: string;
183
+ /** Icon to display on the left side inside the input */
184
+ leftIcon?: React__default.ReactNode;
185
+ /** Icon to display on the right side inside the input */
186
+ rightIcon?: React__default.ReactNode;
187
+ /** Additional CSS classes for the container div */
188
+ containerClassName?: string;
189
+ }
190
+ /**
191
+ * A styled text input component with support for labels, error messages, and icons.
192
+ * Follows the library's glassmorphic design system.
193
+ */
194
+ declare const TextInput: React__default.ForwardRefExoticComponent<TextInputProps & React__default.RefAttributes<HTMLInputElement>>;
195
+
196
+ interface CheckboxProps extends Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, 'onChange'> {
197
+ label?: string;
198
+ error?: string;
199
+ checked?: boolean;
200
+ defaultChecked?: boolean;
201
+ onChange?: (event: {
202
+ target: {
203
+ checked: boolean;
204
+ };
205
+ }) => void;
206
+ }
207
+ declare const Checkbox: React__default.ForwardRefExoticComponent<CheckboxProps & React__default.RefAttributes<HTMLButtonElement>>;
208
+
209
+ interface SwitchProps extends Omit<React__default.ButtonHTMLAttributes<HTMLButtonElement>, 'onChange' | 'type'> {
210
+ label?: string;
211
+ error?: string;
212
+ checked?: boolean;
213
+ defaultChecked?: boolean;
214
+ onChange?: (event: {
215
+ target: {
216
+ checked: boolean;
217
+ };
218
+ }) => void;
219
+ }
220
+ declare const Switch: React__default.ForwardRefExoticComponent<SwitchProps & React__default.RefAttributes<HTMLButtonElement>>;
221
+
222
+ interface SelectOption {
223
+ label: string;
224
+ value: string;
225
+ }
226
+ interface SelectProps {
227
+ label?: string;
228
+ name?: string;
229
+ options: SelectOption[];
230
+ value?: string;
231
+ defaultValue?: string;
232
+ onChange?: (value: string) => void;
233
+ placeholder?: string;
234
+ error?: string;
235
+ disabled?: boolean;
236
+ className?: string;
237
+ }
238
+ declare const Select: React__default.ForwardRefExoticComponent<SelectProps & React__default.RefAttributes<HTMLDivElement>>;
239
+
240
+ interface ComboboxProps {
241
+ children: React__default.ReactNode;
242
+ value?: string;
243
+ defaultValue?: string;
244
+ onValueChange?: (value: string) => void;
245
+ filter?: (value: string, search: string) => boolean;
246
+ usePopover?: boolean;
247
+ }
248
+ declare function Combobox({ children, value: controlledValue, defaultValue, onValueChange, filter, usePopover }: ComboboxProps): react_jsx_runtime.JSX.Element;
249
+ declare function ComboboxTrigger({ className, children, ...props }: React__default.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
250
+ declare function ComboboxContent({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
251
+ declare function ComboboxInput({ className, placeholder, ...props }: React__default.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
252
+ declare function ComboboxList({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
253
+ declare function ComboboxEmpty({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element | null;
254
+ interface ComboboxItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
255
+ value: string;
256
+ children: React__default.ReactNode;
257
+ textValue?: string;
258
+ }
259
+ declare function ComboboxItem({ className, value, children, textValue, ...props }: ComboboxItemProps): react_jsx_runtime.JSX.Element | null;
260
+
261
+ interface SliderProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> {
262
+ value?: number;
263
+ defaultValue?: number;
264
+ min?: number;
265
+ max?: number;
266
+ step?: number;
267
+ onChange?: (value: number) => void;
268
+ disabled?: boolean;
269
+ }
270
+ declare const Slider: React__default.ForwardRefExoticComponent<SliderProps & React__default.RefAttributes<HTMLDivElement>>;
271
+
272
+ interface DatePickerProps {
273
+ value?: Date;
274
+ onChange?: (date: Date) => void;
275
+ placeholder?: string;
276
+ className?: string;
277
+ }
278
+ declare function DatePicker({ value, onChange, placeholder, className }: DatePickerProps): react_jsx_runtime.JSX.Element;
279
+
280
+ interface DateTimePickerProps {
281
+ value?: Date;
282
+ onChange?: (date: Date) => void;
283
+ placeholder?: string;
284
+ className?: string;
285
+ }
286
+ declare function DateTimePicker({ value, onChange, placeholder, className }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
287
+
288
+ interface TextareaProps extends React__default.TextareaHTMLAttributes<HTMLTextAreaElement> {
289
+ label?: string;
290
+ error?: string;
291
+ }
292
+ declare const Textarea: React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>;
293
+
294
+ interface RadioGroupProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> {
295
+ value?: string;
296
+ onChange?: (value: string) => void;
297
+ name?: string;
298
+ disabled?: boolean;
299
+ label?: string;
300
+ }
301
+ declare const RadioGroup: React__default.ForwardRefExoticComponent<RadioGroupProps & React__default.RefAttributes<HTMLDivElement>>;
302
+ interface RadioGroupItemProps extends React__default.InputHTMLAttributes<HTMLInputElement> {
303
+ value: string;
304
+ label?: string;
305
+ }
306
+ declare const RadioGroupItem: React__default.ForwardRefExoticComponent<RadioGroupItemProps & React__default.RefAttributes<HTMLInputElement>>;
307
+
308
+ declare const FormItem: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
309
+ declare const FormLabel: React__default.ForwardRefExoticComponent<Omit<LabelProps & React__default.RefAttributes<HTMLLabelElement>, "ref"> & React__default.RefAttributes<HTMLLabelElement>>;
310
+ declare const FormControl: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
311
+ declare const FormDescription: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLParagraphElement> & React__default.RefAttributes<HTMLParagraphElement>>;
312
+ declare const FormMessage: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLParagraphElement> & React__default.RefAttributes<HTMLParagraphElement>>;
313
+
314
+ type ToastVariant = 'default' | 'success' | 'error' | 'warning' | 'info' | 'loading';
315
+ interface ToastProps {
316
+ id: string;
317
+ title?: string;
318
+ description?: React__default.ReactNode;
319
+ variant?: ToastVariant;
320
+ duration?: number;
321
+ onDismiss: (id: string) => void;
322
+ }
323
+ declare const Toast: ({ id, title, description, variant, duration, onDismiss, }: ToastProps) => react_jsx_runtime.JSX.Element;
324
+
325
+ type ToastOptions = Omit<ToastProps, 'id' | 'onDismiss'>;
326
+ interface ToastContextType {
327
+ toast: (options: ToastOptions) => string;
328
+ dismiss: (id: string) => void;
329
+ promise: <T>(promise: Promise<T>, options: {
330
+ loading: string | ToastOptions;
331
+ success: string | ((data: T) => ToastOptions);
332
+ error: string | ((error: any) => ToastOptions);
333
+ }) => Promise<T>;
334
+ }
335
+ declare const ToastContext: React__default.Context<ToastContextType | undefined>;
336
+ declare function ToastProvider({ children }: {
337
+ children: React__default.ReactNode;
338
+ }): react_jsx_runtime.JSX.Element;
339
+
340
+ type AlertVariant = 'default' | 'success' | 'error' | 'warning' | 'info';
341
+ interface AlertProps extends React__default.HTMLAttributes<HTMLDivElement> {
342
+ variant?: AlertVariant;
343
+ icon?: React__default.ReactNode;
344
+ title?: string;
345
+ children?: React__default.ReactNode;
346
+ }
347
+ declare const Alert: React__default.ForwardRefExoticComponent<AlertProps & React__default.RefAttributes<HTMLDivElement>>;
348
+
349
+ type ProgressVariant = 'default' | 'success' | 'warning' | 'danger' | 'gradient';
350
+ type ProgressSize = 'sm' | 'md' | 'lg';
351
+ interface ProgressProps extends React__default.HTMLAttributes<HTMLDivElement> {
352
+ value?: number;
353
+ max?: number;
354
+ variant?: ProgressVariant;
355
+ size?: ProgressSize;
356
+ isIndeterminate?: boolean;
357
+ hasStripe?: boolean;
358
+ indicatorClassName?: string;
359
+ }
360
+ declare const Progress: React__default.ForwardRefExoticComponent<ProgressProps & React__default.RefAttributes<HTMLDivElement>>;
361
+
362
+ interface AvatarProps extends React__default.HTMLAttributes<HTMLDivElement> {
363
+ src?: string;
364
+ alt?: string;
365
+ fallback?: React__default.ReactNode;
366
+ size?: 'sm' | 'md' | 'lg' | 'xl';
367
+ }
368
+ declare const Avatar: React__default.ForwardRefExoticComponent<AvatarProps & React__default.RefAttributes<HTMLDivElement>>;
369
+
370
+ interface AccordionProps extends React__default.HTMLAttributes<HTMLDivElement> {
371
+ type?: 'single' | 'multiple';
372
+ defaultValue?: string | string[];
373
+ value?: string | string[];
374
+ onValueChange?: (value: string | string[]) => void;
375
+ children: React__default.ReactNode;
376
+ }
377
+ declare function Accordion({ type, defaultValue, value, onValueChange, className, children, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
378
+ interface AccordionItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
379
+ value: string;
380
+ children: React__default.ReactNode;
381
+ }
382
+ declare function AccordionItem({ className, value, children, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
383
+ interface AccordionTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
384
+ children: React__default.ReactNode;
385
+ }
386
+ declare function AccordionTrigger({ className, children, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
387
+ interface AccordionContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
388
+ children: React__default.ReactNode;
389
+ }
390
+ declare function AccordionContent({ className, children, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
391
+
392
+ interface CalendarProps {
393
+ className?: string;
394
+ value?: Date;
395
+ onChange?: (date: Date) => void;
396
+ minDate?: Date;
397
+ maxDate?: Date;
398
+ }
399
+ declare function Calendar({ className, value, onChange, minDate, maxDate }: CalendarProps): react_jsx_runtime.JSX.Element;
400
+
401
+ interface TabsProps extends React__default.HTMLAttributes<HTMLDivElement> {
402
+ defaultValue: string;
403
+ value?: string;
404
+ onValueChange?: (value: string) => void;
405
+ children: React__default.ReactNode;
406
+ }
407
+ declare function Tabs({ defaultValue, value, onValueChange, className, children, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
408
+ interface TabsListProps extends React__default.HTMLAttributes<HTMLDivElement> {
409
+ children: React__default.ReactNode;
410
+ }
411
+ declare function TabsList({ className, children, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
412
+ interface TabsTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
413
+ value: string;
414
+ children: React__default.ReactNode;
415
+ }
416
+ declare function TabsTrigger({ className, value, children, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
417
+ interface TabsContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
418
+ value: string;
419
+ children: React__default.ReactNode;
420
+ }
421
+ declare function TabsContent({ className, value, children, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element | null;
422
+
423
+ interface SidebarProps extends React__default.HTMLAttributes<HTMLDivElement> {
424
+ children: React__default.ReactNode;
425
+ }
426
+ declare const Sidebar: React__default.ForwardRefExoticComponent<SidebarProps & React__default.RefAttributes<HTMLDivElement>>;
427
+ interface SidebarHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
428
+ }
429
+ declare const SidebarHeader: React__default.ForwardRefExoticComponent<SidebarHeaderProps & React__default.RefAttributes<HTMLDivElement>>;
430
+ interface SidebarContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
431
+ }
432
+ declare const SidebarContent: React__default.ForwardRefExoticComponent<SidebarContentProps & React__default.RefAttributes<HTMLDivElement>>;
433
+ interface SidebarFooterProps extends React__default.HTMLAttributes<HTMLDivElement> {
434
+ }
435
+ declare const SidebarFooter: React__default.ForwardRefExoticComponent<SidebarFooterProps & React__default.RefAttributes<HTMLDivElement>>;
436
+ interface SidebarItemProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
437
+ active?: boolean;
438
+ icon?: React__default.ReactNode;
439
+ badge?: React__default.ReactNode;
440
+ }
441
+ declare const SidebarItem: React__default.ForwardRefExoticComponent<SidebarItemProps & React__default.RefAttributes<HTMLButtonElement>>;
442
+ interface SidebarGroupProps extends React__default.HTMLAttributes<HTMLDivElement> {
443
+ label?: string;
444
+ }
445
+ declare const SidebarGroup: React__default.ForwardRefExoticComponent<SidebarGroupProps & React__default.RefAttributes<HTMLDivElement>>;
446
+
447
+ interface NavbarProps {
448
+ logo?: React__default.ReactNode;
449
+ links?: {
450
+ label: string;
451
+ href: string;
452
+ }[];
453
+ actions?: React__default.ReactNode;
454
+ className?: string;
455
+ maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
456
+ }
457
+ declare function Navbar({ logo, links, actions, className, maxWidth, }: NavbarProps): react_jsx_runtime.JSX.Element;
458
+
459
+ interface UserMenuProps {
460
+ name: string;
461
+ description?: string;
462
+ avatarSrc?: string;
463
+ avatarFallback?: string;
464
+ className?: string;
465
+ side?: 'top' | 'bottom' | 'left' | 'right';
466
+ align?: 'start' | 'end' | 'center';
467
+ }
468
+ declare function UserMenu({ name, description, avatarSrc, avatarFallback, className, side, align }: UserMenuProps): react_jsx_runtime.JSX.Element;
469
+
470
+ declare const Breadcrumb: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
471
+ separator?: React__default.ReactNode;
472
+ } & React__default.RefAttributes<HTMLElement>>;
473
+ declare const BreadcrumbList: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React__default.RefAttributes<HTMLOListElement>>;
474
+ declare const BreadcrumbItem: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React__default.RefAttributes<HTMLLIElement>>;
475
+ declare const BreadcrumbLink: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
476
+ asChild?: boolean;
477
+ } & React__default.RefAttributes<HTMLAnchorElement>>;
478
+ declare const BreadcrumbPage: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React__default.RefAttributes<HTMLSpanElement>>;
479
+ declare const BreadcrumbSeparator: {
480
+ ({ children, className, ...props }: React__default.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
481
+ displayName: string;
482
+ };
483
+ declare const BreadcrumbEllipsis: {
484
+ ({ className, ...props }: React__default.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
485
+ displayName: string;
486
+ };
487
+
488
+ declare const Pagination: {
489
+ ({ className, ...props }: React__default.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
490
+ displayName: string;
491
+ };
492
+ declare const PaginationContent: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React__default.RefAttributes<HTMLUListElement>>;
493
+ declare const PaginationItem: React__default.ForwardRefExoticComponent<Omit<React__default.DetailedHTMLProps<React__default.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React__default.RefAttributes<HTMLLIElement>>;
494
+ type PaginationLinkProps = {
495
+ isActive?: boolean;
496
+ } & React__default.ComponentProps<"a">;
497
+ declare const PaginationLink: {
498
+ ({ className, isActive, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
499
+ displayName: string;
500
+ };
501
+ declare const PaginationPrevious: {
502
+ ({ className, ...props }: React__default.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
503
+ displayName: string;
504
+ };
505
+ declare const PaginationNext: {
506
+ ({ className, ...props }: React__default.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
507
+ displayName: string;
508
+ };
509
+ declare const PaginationEllipsis: {
510
+ ({ className, ...props }: React__default.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
511
+ displayName: string;
512
+ };
513
+
514
+ interface ModalProps {
515
+ isOpen: boolean;
516
+ onClose: () => void;
517
+ children: React__default.ReactNode;
518
+ className?: string;
519
+ }
520
+ declare function Modal({ isOpen, onClose, children, className }: ModalProps): React__default.ReactPortal;
521
+ declare function ModalHeader({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
522
+ declare function ModalFooter({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
523
+ declare function ModalTitle({ className, children }: React__default.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
524
+ declare function ModalDescription({ className, children }: React__default.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
525
+
526
+ interface DialogProps {
527
+ isOpen: boolean;
528
+ onClose: () => void;
529
+ children: React__default.ReactNode;
530
+ className?: string;
531
+ }
532
+ declare function Dialog({ isOpen, onClose, children, className }: DialogProps): React__default.ReactPortal;
533
+ declare function DialogHeader({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
534
+ declare function DialogFooter({ className, children }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
535
+ declare function DialogTitle({ className, children }: React__default.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
536
+ declare function DialogDescription({ className, children }: React__default.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
537
+
538
+ interface DrawerProps {
539
+ isOpen: boolean;
540
+ onClose: () => void;
541
+ position?: 'left' | 'right' | 'bottom';
542
+ children: React__default.ReactNode;
543
+ className?: string;
544
+ }
545
+ declare function Drawer({ isOpen, onClose, position, children, className }: DrawerProps): React__default.ReactPortal | null;
546
+ declare function DrawerHeader({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
547
+ declare function DrawerFooter({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
548
+ declare function DrawerTitle({ className, children, ...props }: React__default.HTMLAttributes<HTMLHeadingElement>): react_jsx_runtime.JSX.Element;
549
+ declare function DrawerDescription({ className, children, ...props }: React__default.HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
550
+
551
+ interface DropdownMenuProps {
552
+ children: React__default.ReactNode;
553
+ }
554
+ declare function DropdownMenu({ children }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
555
+ interface DropdownMenuTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
556
+ children: React__default.ReactNode;
557
+ }
558
+ declare function DropdownMenuTrigger({ className, children, ...props }: DropdownMenuTriggerProps): react_jsx_runtime.JSX.Element;
559
+ interface DropdownMenuContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
560
+ children: React__default.ReactNode;
561
+ align?: 'start' | 'end' | 'center';
562
+ side?: 'top' | 'bottom' | 'left' | 'right';
563
+ }
564
+ declare function DropdownMenuContent({ className, children, align, side, ...props }: DropdownMenuContentProps): React__default.ReactPortal | null;
565
+ interface DropdownMenuItemProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
566
+ children: React__default.ReactNode;
567
+ }
568
+ declare function DropdownMenuItem({ className, children, ...props }: DropdownMenuItemProps): react_jsx_runtime.JSX.Element;
569
+ declare function DropdownMenuLabel({ className, children, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
570
+ declare function DropdownMenuSeparator({ className, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
571
+
572
+ interface PopoverProps {
573
+ children: React__default.ReactNode;
574
+ open?: boolean;
575
+ onOpenChange?: (open: boolean) => void;
576
+ }
577
+ declare function Popover({ children, open, onOpenChange }: PopoverProps): react_jsx_runtime.JSX.Element;
578
+ interface PopoverTriggerProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
579
+ children: React__default.ReactNode;
580
+ }
581
+ declare function PopoverTrigger({ className, children, ...props }: PopoverTriggerProps): react_jsx_runtime.JSX.Element;
582
+ interface PopoverContentProps extends React__default.HTMLAttributes<HTMLDivElement> {
583
+ children: React__default.ReactNode;
584
+ align?: 'start' | 'end' | 'center';
585
+ sideOffset?: number;
586
+ }
587
+ declare function PopoverContent({ className, children, align, sideOffset, ...props }: PopoverContentProps): React__default.ReactPortal | null;
588
+
589
+ type TooltipPosition = 'top' | 'bottom' | 'left' | 'right';
590
+ interface TooltipProps {
591
+ content: React__default.ReactNode;
592
+ children: React__default.ReactNode;
593
+ position?: TooltipPosition;
594
+ delay?: number;
595
+ className?: string;
596
+ }
597
+ declare function Tooltip({ content, children, position, delay, className }: TooltipProps): react_jsx_runtime.JSX.Element;
598
+
599
+ interface CommandDialogProps extends ComboboxProps {
600
+ open: boolean;
601
+ onOpenChange: (open: boolean) => void;
602
+ }
603
+ declare function Command({ children, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
604
+ declare function CommandDialog({ children, open, onOpenChange, ...props }: CommandDialogProps): React__default.ReactPortal | null;
605
+ declare function CommandInput({ className, ...props }: React__default.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
606
+ declare function CommandList({ className, ...props }: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
607
+ declare function CommandEmpty(props: React__default.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
608
+ declare function CommandGroup({ children, heading, className, ...props }: React__default.HTMLAttributes<HTMLDivElement> & {
609
+ heading?: React__default.ReactNode;
610
+ }): react_jsx_runtime.JSX.Element;
611
+ declare function CommandItem({ className, ...props }: React__default.ComponentProps<typeof ComboboxItem>): react_jsx_runtime.JSX.Element;
612
+ declare function CommandShortcut({ className, ...props }: React__default.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
613
+
614
+ declare function useToast(): ToastContextType;
615
+
616
+ declare function useTimer(initialSeconds?: number): {
617
+ seconds: number;
618
+ isActive: boolean;
619
+ start: () => void;
620
+ pause: () => void;
621
+ reset: () => void;
622
+ formattedTime: string;
623
+ };
624
+
625
+ type Side = 'top' | 'bottom' | 'left' | 'right';
626
+ type Align = 'start' | 'center' | 'end';
627
+ interface UseFloatingOptions {
628
+ side?: Side;
629
+ align?: Align;
630
+ sideOffset?: number;
631
+ alignOffset?: number;
632
+ isOpen?: boolean;
633
+ }
634
+ interface Position {
635
+ top: number;
636
+ left: number;
637
+ }
638
+ declare function useFloating(triggerRef: RefObject<HTMLElement>, contentRef: RefObject<HTMLElement>, options?: UseFloatingOptions): {
639
+ position: Position;
640
+ isPositioned: boolean;
641
+ updatePosition: () => void;
642
+ };
643
+
644
+ interface UseIntersectionOptions extends IntersectionObserverInit {
645
+ freezeOnceVisible?: boolean;
646
+ }
647
+ declare function useIntersection(elementRef: RefObject<Element>, { threshold, root, rootMargin, freezeOnceVisible, }?: UseIntersectionOptions): IntersectionObserverEntry | undefined;
648
+
649
+ interface UseFormOptions<T> {
650
+ initialValues: T;
651
+ onSubmit: (values: T) => void | Promise<void>;
652
+ }
653
+ declare function useForm<T extends Record<string, unknown>>({ initialValues, onSubmit, }: UseFormOptions<T>): {
654
+ values: T;
655
+ errors: Partial<Record<keyof T, string>>;
656
+ isSubmitting: boolean;
657
+ handleChange: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement>) => void;
658
+ handleSubmit: (e: FormEvent<HTMLFormElement>) => Promise<void>;
659
+ register: (name: keyof T) => {
660
+ name: string;
661
+ value: string | number | readonly string[] | undefined;
662
+ onChange: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement>) => void;
663
+ error: Partial<Record<keyof T, string>>[keyof T];
664
+ };
665
+ setValues: React$1.Dispatch<React$1.SetStateAction<T>>;
666
+ setErrors: React$1.Dispatch<React$1.SetStateAction<Partial<Record<keyof T, string>>>>;
667
+ };
668
+
669
+ type Breakpoint = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
670
+ declare function useMediaQuery(query: string): boolean;
671
+ declare function useBreakpoint(breakpoint: Breakpoint): boolean;
672
+ interface ContainerSize {
673
+ width: number;
674
+ height: number;
675
+ }
676
+ declare function useContainerQuery(ref: RefObject<HTMLElement>): ContainerSize;
677
+
678
+ interface ScrollValues {
679
+ scrollX: number;
680
+ scrollY: number;
681
+ scrollProgressX: number;
682
+ scrollProgressY: number;
683
+ }
684
+ declare function useScroll(): ScrollValues;
685
+
686
+ declare const surfaceVariants: (props?: ({
687
+ variant?: "ghost" | "default" | null | undefined;
688
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
689
+ interface SurfaceProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof surfaceVariants> {
690
+ asChild?: boolean;
691
+ }
692
+ declare const Surface: React__default.ForwardRefExoticComponent<SurfaceProps & React__default.RefAttributes<HTMLDivElement>>;
693
+
694
+ interface ScrollProgressProps extends React__default.HTMLAttributes<HTMLDivElement> {
695
+ color?: string;
696
+ height?: number | string;
697
+ position?: 'top' | 'bottom';
698
+ }
699
+ declare function ScrollProgress({ className, color, height, position, ...props }: ScrollProgressProps): react_jsx_runtime.JSX.Element;
700
+
701
+ declare const badgeVariants: (props?: ({
702
+ variant?: "outline" | "danger" | "success" | "default" | "warning" | "info" | "neutral" | null | undefined;
703
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
704
+ interface BadgeProps extends React__default.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
705
+ children: React__default.ReactNode;
706
+ }
707
+ declare const Badge: React__default.ForwardRefExoticComponent<BadgeProps & React__default.RefAttributes<HTMLSpanElement>>;
708
+
709
+ interface DividerProps extends React__default.HTMLAttributes<HTMLHRElement> {
710
+ orientation?: 'horizontal' | 'vertical';
711
+ }
712
+ declare const Divider: React__default.ForwardRefExoticComponent<DividerProps & React__default.RefAttributes<HTMLHRElement>>;
713
+
714
+ interface KbdProps extends React__default.HTMLAttributes<HTMLElement> {
715
+ children: React__default.ReactNode;
716
+ }
717
+ declare const Kbd: React__default.ForwardRefExoticComponent<KbdProps & React__default.RefAttributes<HTMLElement>>;
718
+
719
+ interface EmptyStateProps extends React__default.HTMLAttributes<HTMLDivElement> {
720
+ icon?: React__default.ReactNode;
721
+ title: string;
722
+ description?: string;
723
+ action?: React__default.ReactNode;
724
+ }
725
+ declare const EmptyState: React__default.ForwardRefExoticComponent<EmptyStateProps & React__default.RefAttributes<HTMLDivElement>>;
726
+
727
+ interface SkeletonProps extends React__default.HTMLAttributes<HTMLDivElement> {
728
+ variant?: 'default' | 'circle' | 'text';
729
+ }
730
+ declare function Skeleton({ className, variant, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
731
+
732
+ interface TableProps extends React__default.HTMLAttributes<HTMLTableElement> {
733
+ wrapperClassName?: string;
734
+ rounded?: boolean;
735
+ maxHeight?: string | number;
736
+ }
737
+ declare const Table: React__default.ForwardRefExoticComponent<TableProps & React__default.RefAttributes<HTMLTableElement>>;
738
+ declare const TableHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLTableSectionElement> & React__default.RefAttributes<HTMLTableSectionElement>>;
739
+ declare const TableBody: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLTableSectionElement> & React__default.RefAttributes<HTMLTableSectionElement>>;
740
+ interface TableRowProps extends React__default.HTMLAttributes<HTMLTableRowElement> {
741
+ hoverable?: boolean;
742
+ optimized?: boolean;
743
+ }
744
+ declare const TableRow: React__default.ForwardRefExoticComponent<TableRowProps & React__default.RefAttributes<HTMLTableRowElement>>;
745
+ declare const TableHead: React__default.ForwardRefExoticComponent<React__default.ThHTMLAttributes<HTMLTableCellElement> & React__default.RefAttributes<HTMLTableCellElement>>;
746
+ declare const TableCell: React__default.ForwardRefExoticComponent<React__default.TdHTMLAttributes<HTMLTableCellElement> & React__default.RefAttributes<HTMLTableCellElement>>;
747
+
748
+ interface Column<T> {
749
+ key: keyof T | string;
750
+ header: string;
751
+ sortable?: boolean;
752
+ render?: (item: T) => React__default.ReactNode;
753
+ className?: string;
754
+ }
755
+ interface DataTableProps<T> {
756
+ data: T[];
757
+ columns: Column<T>[];
758
+ searchPlaceholder?: string;
759
+ searchKeys?: (keyof T)[];
760
+ onRowClick?: (item: T) => void;
761
+ className?: string;
762
+ maxHeight?: number;
763
+ rounded?: boolean;
764
+ }
765
+ declare function DataTable<T extends Record<string, unknown>>({ data, columns, searchPlaceholder, searchKeys, onRowClick, className, maxHeight, rounded }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
766
+
767
+ interface KanbanTask {
768
+ id: string;
769
+ columnId: string;
770
+ title: string;
771
+ description?: string;
772
+ priority?: 'low' | 'medium' | 'high' | 'urgent';
773
+ tags?: string[];
774
+ assignee?: {
775
+ name: string;
776
+ avatar?: string;
777
+ };
778
+ dueDate?: string;
779
+ progress?: number;
780
+ comments?: number;
781
+ attachments?: number;
782
+ timeSpent?: number;
783
+ blockedBy?: string[];
784
+ [key: string]: any;
785
+ }
786
+ interface KanbanColumn {
787
+ id: string;
788
+ title: string;
789
+ color?: string;
790
+ limit?: number;
791
+ }
792
+ interface KanbanProps {
793
+ columns: KanbanColumn[];
794
+ tasks: KanbanTask[];
795
+ onTaskMove?: (taskId: string, toColumnId: string, toTaskId?: string, position?: 'top' | 'bottom') => void;
796
+ onColumnMove?: (columnId: string, toColumnId: string, position?: 'left' | 'right') => void;
797
+ onTaskClick?: (task: KanbanTask) => void;
798
+ onTaskAdd?: (columnId: string, title: string) => void;
799
+ onTaskFullAdd?: (columnId: string) => void;
800
+ onTaskRemove?: (taskId: string) => void;
801
+ onColumnAction?: (columnId: string, action: string) => void;
802
+ onTaskDrop?: (taskId: string, fromColumnId: string, toColumnId: string, index: number) => void;
803
+ onTaskDragStart?: (taskId: string) => void;
804
+ onTaskDragEnd?: (taskId: string) => void;
805
+ onTaskSelectionChange?: (selectedIds: string[]) => void;
806
+ onTaskTimerToggle?: (taskId: string) => void;
807
+ renderCard?: (task: KanbanTask) => ReactNode;
808
+ className?: string;
809
+ columnClassName?: string;
810
+ cardClassName?: string;
811
+ groupBy?: keyof KanbanTask;
812
+ accentColor?: string;
813
+ showTaskCount?: boolean;
814
+ showDividers?: boolean;
815
+ columnHeight?: number | string;
816
+ pageSize?: number;
817
+ selectable?: boolean;
818
+ selectedTaskIds?: string[];
819
+ activeTimerTaskId?: string | null;
820
+ }
821
+
822
+ declare function Kanban({ columns, tasks, onTaskMove, onColumnMove, onTaskClick, onTaskAdd, onTaskFullAdd, onTaskRemove, onColumnAction, onTaskDrop, onTaskDragStart, onTaskDragEnd, onTaskSelectionChange, onTaskTimerToggle, renderCard, className, columnClassName, cardClassName, groupBy, accentColor, showTaskCount, showDividers, columnHeight, pageSize, selectable, selectedTaskIds, activeTimerTaskId, }: KanbanProps): react_jsx_runtime.JSX.Element;
823
+
824
+ interface KanbanTaskModalProps {
825
+ isOpen: boolean;
826
+ onClose: () => void;
827
+ onSave: (task: Partial<KanbanTask>) => void;
828
+ task?: KanbanTask;
829
+ columnId?: string;
830
+ }
831
+ declare function KanbanTaskModal({ isOpen, onClose, onSave, task, columnId }: KanbanTaskModalProps): react_jsx_runtime.JSX.Element;
832
+
833
+ interface FilterOption {
834
+ label: string;
835
+ value: string;
836
+ }
837
+ interface KanbanFilterBarProps {
838
+ onSearchChange?: (query: string) => void;
839
+ onFilterChange?: (filters: Record<string, string[]>) => void;
840
+ priorityOptions?: FilterOption[];
841
+ tagOptions?: FilterOption[];
842
+ assigneeOptions?: FilterOption[];
843
+ className?: string;
844
+ }
845
+ declare function KanbanFilterBar({ onSearchChange, onFilterChange, priorityOptions, tagOptions, assigneeOptions, className }: KanbanFilterBarProps): react_jsx_runtime.JSX.Element;
846
+
847
+ interface KanbanCalendarViewProps {
848
+ tasks: KanbanTask[];
849
+ onTaskClick?: (task: KanbanTask) => void;
850
+ onAddTask?: (date: Date) => void;
851
+ className?: string;
852
+ }
853
+ declare function KanbanCalendarView({ tasks, onTaskClick, onAddTask, className }: KanbanCalendarViewProps): react_jsx_runtime.JSX.Element;
854
+
855
+ interface ScrollAreaProps extends React__default.HTMLAttributes<HTMLDivElement> {
856
+ orientation?: 'vertical' | 'horizontal' | 'both';
857
+ scrollbarSize?: 'sm' | 'md' | 'lg';
858
+ }
859
+ declare const ScrollArea: React__default.ForwardRefExoticComponent<ScrollAreaProps & React__default.RefAttributes<HTMLDivElement>>;
860
+
861
+ declare const Card: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
862
+ declare const CardHeader: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
863
+ declare const CardTitle: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLHeadingElement> & React__default.RefAttributes<HTMLParagraphElement>>;
864
+ declare const CardDescription: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLParagraphElement> & React__default.RefAttributes<HTMLParagraphElement>>;
865
+ declare const CardContent: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
866
+ declare const CardFooter: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & React__default.RefAttributes<HTMLDivElement>>;
867
+
868
+ interface ImageProps extends React__default.ImgHTMLAttributes<HTMLImageElement> {
869
+ fallback?: React__default.ReactNode;
870
+ containerClassName?: string;
871
+ }
872
+ declare const Image: React__default.ForwardRefExoticComponent<ImageProps & React__default.RefAttributes<HTMLImageElement>>;
873
+
874
+ interface ContainerProps extends React__default.HTMLAttributes<HTMLDivElement> {
875
+ size?: 'sm' | 'md' | 'lg' | 'xl' | 'full';
876
+ }
877
+ declare const Container: React__default.ForwardRefExoticComponent<ContainerProps & React__default.RefAttributes<HTMLDivElement>>;
878
+
879
+ interface StackProps extends React__default.HTMLAttributes<HTMLDivElement> {
880
+ direction?: 'row' | 'col' | 'row-reverse' | 'col-reverse';
881
+ gap?: number | string;
882
+ align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
883
+ justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
884
+ wrap?: boolean;
885
+ }
886
+ declare const Stack: React__default.ForwardRefExoticComponent<StackProps & React__default.RefAttributes<HTMLDivElement>>;
887
+
888
+ interface GridProps extends React__default.HTMLAttributes<HTMLDivElement> {
889
+ cols?: number;
890
+ sm?: number;
891
+ md?: number;
892
+ lg?: number;
893
+ xl?: number;
894
+ gap?: number | string;
895
+ }
896
+ declare const Grid: React__default.ForwardRefExoticComponent<GridProps & React__default.RefAttributes<HTMLDivElement>>;
897
+
898
+ interface BackgroundProps extends React__default.HTMLAttributes<HTMLDivElement> {
899
+ /**
900
+ * The pattern variant to display
901
+ * @default 'none'
902
+ */
903
+ variant?: 'dots' | 'grid' | 'mesh' | 'gradient' | 'beams' | 'none';
904
+ /**
905
+ * Add a subtle noise/grain texture
906
+ * @default false
907
+ */
908
+ noise?: boolean;
909
+ /**
910
+ * The color of the pattern (CSS color or variable)
911
+ * @default 'rgba(255,255,255,0.08)'
912
+ */
913
+ patternColor?: string;
914
+ /**
915
+ * The size of the pattern (spacing between dots/lines)
916
+ * @default 24
917
+ */
918
+ size?: number;
919
+ /**
920
+ * Apply a radial mask to fade the edges
921
+ * @default 'none'
922
+ */
923
+ mask?: 'fade' | 'none';
924
+ /**
925
+ * Enable subtle animations for mesh or gradient variants
926
+ * @default false
927
+ */
928
+ animate?: boolean;
929
+ /**
930
+ * Make the background follow the mouse (requires relative parent)
931
+ * @default false
932
+ */
933
+ followMouse?: boolean;
934
+ /**
935
+ * The background color of the container.
936
+ * Can be a Tailwind class (e.g., 'bg-zinc-950') or a CSS color.
937
+ */
938
+ bgColor?: string;
939
+ }
940
+ declare const Background: React__default.ForwardRefExoticComponent<BackgroundProps & React__default.RefAttributes<HTMLDivElement>>;
941
+
942
+ type Theme = "dark" | "light" | "system";
943
+ type ThemeProviderProps = {
944
+ children: React__default.ReactNode;
945
+ defaultTheme?: Theme;
946
+ storageKey?: string;
947
+ };
948
+ type ThemeProviderState = {
949
+ theme: Theme;
950
+ setTheme: (theme: Theme) => void;
951
+ };
952
+ declare function ThemeProvider({ children, defaultTheme, storageKey, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
953
+ declare const useTheme: () => ThemeProviderState;
954
+
955
+ declare function ThemeToggle(): react_jsx_runtime.JSX.Element;
956
+
957
+ type ChartDataPoint<T = Record<string, any>> = {
958
+ label: string;
959
+ value: number;
960
+ } & T;
961
+ interface ChartContextValue<T = any> {
962
+ width: number;
963
+ height: number;
964
+ data: ChartDataPoint<T>[];
965
+ maxValue: number;
966
+ padding: {
967
+ top: number;
968
+ right: number;
969
+ bottom: number;
970
+ left: number;
971
+ };
972
+ hoveredIndex: number | null;
973
+ setHoveredIndex: (index: number | null) => void;
974
+ }
975
+ declare function useChart<T = any>(): ChartContextValue<T>;
976
+ declare function normalize(value: number, max: number, height: number): number;
977
+ interface ChartContainerProps<T = any> extends React__default.HTMLAttributes<HTMLDivElement> {
978
+ data: ChartDataPoint<T>[];
979
+ height?: number;
980
+ padding?: {
981
+ top: number;
982
+ right: number;
983
+ bottom: number;
984
+ left: number;
985
+ };
986
+ children: React__default.ReactNode;
987
+ }
988
+ declare function ChartContainer<T = any>({ data, height, padding, className, children, ...props }: ChartContainerProps<T>): react_jsx_runtime.JSX.Element;
989
+ declare function ChartGrid({ lines }: {
990
+ lines?: number;
991
+ }): react_jsx_runtime.JSX.Element;
992
+ declare function ChartXAxis(): react_jsx_runtime.JSX.Element;
993
+ declare function ChartTooltip({ renderTooltip }: {
994
+ renderTooltip?: (data: ChartDataPoint) => React__default.ReactNode;
995
+ }): react_jsx_runtime.JSX.Element | null;
996
+ declare function ChartSkeleton(): react_jsx_runtime.JSX.Element;
997
+
998
+ interface BarChartProps<T = any> {
999
+ color?: 'cyan' | 'purple' | 'emerald' | 'amber' | 'rose';
1000
+ showValues?: boolean;
1001
+ animationDelay?: number;
1002
+ onValueClick?: (data: ChartDataPoint<T>) => void;
1003
+ }
1004
+ declare function BarChart<T = any>({ color, showValues, animationDelay, onValueClick }: BarChartProps<T>): react_jsx_runtime.JSX.Element;
1005
+
1006
+ interface AreaChartProps<T = any> {
1007
+ color?: 'cyan' | 'purple' | 'emerald' | 'amber' | 'rose';
1008
+ showValues?: boolean;
1009
+ animationDelay?: number;
1010
+ onValueClick?: (data: ChartDataPoint<T>) => void;
1011
+ }
1012
+ declare function AreaChart<T = any>({ color, showValues, animationDelay, onValueClick }: AreaChartProps<T>): react_jsx_runtime.JSX.Element;
1013
+
1014
+ interface LineChartProps<T = any> {
1015
+ color?: 'cyan' | 'purple' | 'emerald' | 'amber' | 'rose';
1016
+ showValues?: boolean;
1017
+ animationDelay?: number;
1018
+ curve?: 'linear' | 'smooth' | 'step';
1019
+ strokeWidth?: number;
1020
+ align?: 'center' | 'edge';
1021
+ onValueClick?: (data: ChartDataPoint<T>) => void;
1022
+ }
1023
+ declare function LineChart<T = any>({ color, showValues, animationDelay, curve, strokeWidth, align, onValueClick }: LineChartProps<T>): react_jsx_runtime.JSX.Element;
1024
+
1025
+ interface PieChartProps<T = any> {
1026
+ innerRadius?: number;
1027
+ padAngle?: number;
1028
+ showLabels?: boolean;
1029
+ colors?: string[];
1030
+ onValueClick?: (data: ChartDataPoint<T>) => void;
1031
+ }
1032
+ declare function PieChart<T = any>({ innerRadius, padAngle, showLabels, colors, onValueClick }: PieChartProps<T>): react_jsx_runtime.JSX.Element;
1033
+
1034
+ type RadarDataPoint<T = Record<string, any>> = {
1035
+ subject: string;
1036
+ } & T;
1037
+ interface RadarChartProps<T = any> extends React__default.HTMLAttributes<HTMLDivElement> {
1038
+ data: RadarDataPoint<T>[];
1039
+ keys: (keyof T)[];
1040
+ colors?: string[];
1041
+ maxValue?: number;
1042
+ height?: number;
1043
+ }
1044
+ declare function RadarChart<T = any>({ data, keys, colors, maxValue: userMaxValue, height, className, ...props }: RadarChartProps<T>): react_jsx_runtime.JSX.Element;
1045
+
1046
+ interface SparklineProps extends React__default.HTMLAttributes<HTMLDivElement> {
1047
+ data: number[];
1048
+ color?: 'cyan' | 'purple' | 'emerald' | 'amber' | 'rose' | 'white';
1049
+ height?: number;
1050
+ strokeWidth?: number;
1051
+ fill?: boolean;
1052
+ }
1053
+ declare function Sparkline({ data, color, height, strokeWidth, fill, className, ...props }: SparklineProps): react_jsx_runtime.JSX.Element;
1054
+
1055
+ interface YAxisProps {
1056
+ ticks?: number;
1057
+ format?: (value: number) => string;
1058
+ }
1059
+ declare function ChartYAxis({ ticks, format }: YAxisProps): react_jsx_runtime.JSX.Element;
1060
+
1061
+ declare const userPreviewVariants: (props?: ({
1062
+ variant?: "default" | "glass" | null | undefined;
1063
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1064
+ interface UserPreviewProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof userPreviewVariants> {
1065
+ user: {
1066
+ name: string;
1067
+ email?: string;
1068
+ avatarSrc?: string;
1069
+ role?: string;
1070
+ bio?: string;
1071
+ stats?: {
1072
+ label: string;
1073
+ value: string | number;
1074
+ }[];
1075
+ };
1076
+ onFollow?: () => void;
1077
+ onMessage?: () => void;
1078
+ }
1079
+ declare const UserPreview: React__default.ForwardRefExoticComponent<UserPreviewProps & React__default.RefAttributes<HTMLDivElement>>;
1080
+
1081
+ declare const timelineItemVariants: (props?: ({
1082
+ status?: "success" | "default" | "error" | "active" | null | undefined;
1083
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1084
+ interface TimelineItemProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof timelineItemVariants> {
1085
+ title: string;
1086
+ date?: string;
1087
+ description?: React__default.ReactNode;
1088
+ icon?: React__default.ReactNode;
1089
+ isLast?: boolean;
1090
+ }
1091
+ declare const TimelineItem: React__default.ForwardRefExoticComponent<TimelineItemProps & React__default.RefAttributes<HTMLDivElement>>;
1092
+ declare const Timeline: ({ children, className }: {
1093
+ children: React__default.ReactNode;
1094
+ className?: string;
1095
+ }) => react_jsx_runtime.JSX.Element;
1096
+
1097
+ interface TreeNode {
1098
+ id: string;
1099
+ label: string;
1100
+ icon?: React__default.ReactNode;
1101
+ children?: TreeNode[];
1102
+ }
1103
+ interface TreeProps {
1104
+ data: TreeNode[];
1105
+ className?: string;
1106
+ onSelect?: (node: TreeNode) => void;
1107
+ }
1108
+ declare const Tree: ({ data, className, onSelect }: TreeProps) => react_jsx_runtime.JSX.Element;
1109
+
1110
+ interface TerminalProps extends React__default.HTMLAttributes<HTMLDivElement> {
1111
+ title?: string;
1112
+ children: React__default.ReactNode;
1113
+ }
1114
+ declare const Terminal: React__default.ForwardRefExoticComponent<TerminalProps & React__default.RefAttributes<HTMLDivElement>>;
1115
+ declare const TerminalLine: ({ children, prefix, className }: {
1116
+ children: React__default.ReactNode;
1117
+ prefix?: string;
1118
+ className?: string;
1119
+ }) => react_jsx_runtime.JSX.Element;
1120
+
1121
+ interface MarqueeProps extends React__default.HTMLAttributes<HTMLDivElement> {
1122
+ pauseOnHover?: boolean;
1123
+ direction?: 'left' | 'right';
1124
+ speed?: 'slow' | 'normal' | 'fast';
1125
+ children: React__default.ReactNode;
1126
+ }
1127
+ declare const Marquee: ({ className, pauseOnHover, direction, speed, children, ...props }: MarqueeProps) => react_jsx_runtime.JSX.Element;
1128
+
1129
+ declare const statusDotVariants: (props?: ({
1130
+ variant?: "success" | "error" | "warning" | "info" | "neutral" | null | undefined;
1131
+ size?: "sm" | "md" | "lg" | null | undefined;
1132
+ animate?: boolean | null | undefined;
1133
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1134
+ interface StatusDotProps extends React__default.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof statusDotVariants> {
1135
+ }
1136
+ declare const StatusDot: React__default.ForwardRefExoticComponent<StatusDotProps & React__default.RefAttributes<HTMLSpanElement>>;
1137
+
1138
+ interface FileDropzoneProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onDrop'> {
1139
+ onDrop?: (files: File[]) => void;
1140
+ accept?: Record<string, string[]>;
1141
+ maxFiles?: number;
1142
+ maxSize?: number;
1143
+ label?: string;
1144
+ description?: string;
1145
+ }
1146
+ declare const FileDropzone: React__default.ForwardRefExoticComponent<FileDropzoneProps & React__default.RefAttributes<HTMLDivElement>>;
1147
+
1148
+ declare const otpInputVariants: (props?: ({
1149
+ size?: "sm" | "md" | "lg" | null | undefined;
1150
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1151
+ interface OTPInputProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>, VariantProps<typeof otpInputVariants> {
1152
+ length?: number;
1153
+ value?: string;
1154
+ onChange?: (value: string) => void;
1155
+ onComplete?: (value: string) => void;
1156
+ disabled?: boolean;
1157
+ error?: boolean;
1158
+ }
1159
+ declare const OTPInput: React__default.ForwardRefExoticComponent<OTPInputProps & React__default.RefAttributes<HTMLDivElement>>;
1160
+
1161
+ declare const numberInputVariants: (props?: ({
1162
+ size?: "sm" | "md" | "lg" | null | undefined;
1163
+ error?: boolean | null | undefined;
1164
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1165
+ interface NumberInputProps extends Omit<React__default.InputHTMLAttributes<HTMLInputElement>, 'size' | 'onChange'>, VariantProps<typeof numberInputVariants> {
1166
+ value?: number;
1167
+ onChange?: (value: number) => void;
1168
+ min?: number;
1169
+ max?: number;
1170
+ step?: number;
1171
+ }
1172
+ declare const NumberInput: React__default.ForwardRefExoticComponent<NumberInputProps & React__default.RefAttributes<HTMLInputElement>>;
1173
+
1174
+ declare const toggleGroupVariants: (props?: ({
1175
+ size?: "sm" | "md" | "lg" | null | undefined;
1176
+ fullWidth?: boolean | null | undefined;
1177
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1178
+ interface ToggleGroupProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'>, VariantProps<typeof toggleGroupVariants> {
1179
+ value?: string;
1180
+ onChange?: (value: string) => void;
1181
+ options: {
1182
+ label: string;
1183
+ value: string;
1184
+ icon?: React__default.ReactNode;
1185
+ }[];
1186
+ }
1187
+ declare const ToggleGroup: React__default.ForwardRefExoticComponent<ToggleGroupProps & React__default.RefAttributes<HTMLDivElement>>;
1188
+
1189
+ interface RatingProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> {
1190
+ max?: number;
1191
+ value?: number;
1192
+ onChange?: (value: number) => void;
1193
+ readOnly?: boolean;
1194
+ size?: 'sm' | 'md' | 'lg';
1195
+ }
1196
+ declare const Rating: React__default.ForwardRefExoticComponent<RatingProps & React__default.RefAttributes<HTMLDivElement>>;
1197
+
1198
+ interface StepperProps {
1199
+ steps: {
1200
+ title: string;
1201
+ description?: string;
1202
+ }[];
1203
+ currentStep: number;
1204
+ className?: string;
1205
+ onStepClick?: (step: number) => void;
1206
+ }
1207
+ declare const Stepper: ({ steps, currentStep, className, onStepClick }: StepperProps) => react_jsx_runtime.JSX.Element;
1208
+
1209
+ interface SpotlightProps extends React__default.HTMLAttributes<HTMLDivElement> {
1210
+ children: React__default.ReactNode;
1211
+ size?: number;
1212
+ color?: string;
1213
+ }
1214
+ declare const Spotlight: ({ children, className, size, color, ...props }: SpotlightProps) => react_jsx_runtime.JSX.Element;
1215
+
1216
+ declare const aiPromptInputVariants: (props?: ({
1217
+ variant?: "ghost" | "default" | null | undefined;
1218
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1219
+ interface Attachment {
1220
+ id: string;
1221
+ name: string;
1222
+ type?: string;
1223
+ url?: string;
1224
+ }
1225
+ interface AIPromptInputProps extends Omit<React__default.TextareaHTMLAttributes<HTMLTextAreaElement>, 'onSubmit'>, VariantProps<typeof aiPromptInputVariants> {
1226
+ /** Callback fired when the user submits the prompt (Enter or Click) */
1227
+ onSubmit?: (value: string) => void;
1228
+ /** Whether the AI is currently generating a response */
1229
+ isGenerating?: boolean;
1230
+ /** Callback fired when the attach button is clicked. If onFilesSelected is provided, this is ignored. */
1231
+ onAttach?: () => void;
1232
+ /** Callback fired when files are selected via the built-in file picker */
1233
+ onFilesSelected?: (files: FileList) => void;
1234
+ /** Callback fired when the stop button is clicked */
1235
+ onStop?: () => void;
1236
+ /** Callback fired when the microphone button is clicked */
1237
+ onMic?: () => void;
1238
+ /** Maximum number of characters allowed */
1239
+ maxLength?: number;
1240
+ /** Custom footer content to render below the input */
1241
+ footer?: React__default.ReactNode;
1242
+ /** List of attached files to display */
1243
+ attachments?: Attachment[];
1244
+ /** Callback fired when an attachment is removed */
1245
+ onRemoveAttachment?: (attachmentId: string) => void;
1246
+ /** Accepted file types for the built-in file picker */
1247
+ accept?: string;
1248
+ /** Whether to allow multiple files in the built-in file picker */
1249
+ multiple?: boolean;
1250
+ }
1251
+ /**
1252
+ * A specialized input component for AI prompts with support for attachments,
1253
+ * voice input, and generation control.
1254
+ */
1255
+ declare const AIPromptInput: React__default.ForwardRefExoticComponent<AIPromptInputProps & React__default.RefAttributes<HTMLTextAreaElement>>;
1256
+
1257
+ declare const aiResponseVariants: (props?: ({
1258
+ variant?: "outline" | "ghost" | "default" | null | undefined;
1259
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1260
+ interface AIResponseSource {
1261
+ title: string;
1262
+ url: string;
1263
+ }
1264
+ interface AIResponseProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof aiResponseVariants> {
1265
+ /** The content of the response */
1266
+ children: React__default.ReactNode;
1267
+ /** Callback fired when the copy button is clicked */
1268
+ onCopy?: () => void;
1269
+ /** Callback fired when the regenerate button is clicked */
1270
+ onRegenerate?: () => void;
1271
+ /** Callback fired when feedback buttons are clicked */
1272
+ onFeedback?: (type: 'up' | 'down') => void;
1273
+ /** Callback fired when the share button is clicked */
1274
+ onShare?: () => void;
1275
+ /** Callback fired when the edit button is clicked */
1276
+ onEdit?: () => void;
1277
+ /** Timestamp string to display (e.g., "Just now", "2 mins ago") */
1278
+ timestamp?: string;
1279
+ /** List of sources/citations to display */
1280
+ sources?: AIResponseSource[];
1281
+ /** Name of the model used (e.g., "GPT-4") */
1282
+ model?: string;
1283
+ /** Usage information (e.g., "245 tokens") */
1284
+ usage?: string | number;
1285
+ }
1286
+ /**
1287
+ * A container component for displaying AI-generated responses with
1288
+ * built-in actions for copying, regenerating, and providing feedback.
1289
+ */
1290
+ declare const AIResponse: React__default.ForwardRefExoticComponent<AIResponseProps & React__default.RefAttributes<HTMLDivElement>>;
1291
+
1292
+ type UserStatus = 'online' | 'offline' | 'away' | 'busy';
1293
+ interface User {
1294
+ id: string;
1295
+ name: string;
1296
+ avatar?: string;
1297
+ status?: UserStatus;
1298
+ lastSeen?: Date;
1299
+ bio?: string;
1300
+ phone?: string;
1301
+ }
1302
+ type MessageType = 'text' | 'image' | 'file' | 'system';
1303
+ type MessageStatus = 'sending' | 'sent' | 'delivered' | 'read' | 'failed';
1304
+ interface ChatAttachment {
1305
+ id: string;
1306
+ type: 'image' | 'file';
1307
+ url: string;
1308
+ name?: string;
1309
+ size?: string;
1310
+ }
1311
+ interface Message {
1312
+ id: string;
1313
+ content: string;
1314
+ senderId: string;
1315
+ timestamp: Date;
1316
+ status?: MessageStatus;
1317
+ type?: MessageType;
1318
+ attachments?: ChatAttachment[];
1319
+ replyToId?: string;
1320
+ reactions?: Record<string, string[]>;
1321
+ }
1322
+ interface Conversation {
1323
+ id: string;
1324
+ user: User;
1325
+ lastMessage?: Message;
1326
+ unreadCount?: number;
1327
+ isTyping?: boolean;
1328
+ }
1329
+
1330
+ interface ChatLayoutProps extends React__default.HTMLAttributes<HTMLDivElement> {
1331
+ children: React__default.ReactNode;
1332
+ }
1333
+ declare function ChatLayout({ children, className, ...props }: ChatLayoutProps): react_jsx_runtime.JSX.Element;
1334
+
1335
+ interface ChatSidebarProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onSelect'> {
1336
+ conversations: Conversation[];
1337
+ activeId?: string;
1338
+ onSelect?: (id: string) => void;
1339
+ onNewChat?: () => void;
1340
+ }
1341
+ declare function ChatSidebar({ conversations, activeId, onSelect, onNewChat, className, ...props }: ChatSidebarProps): react_jsx_runtime.JSX.Element;
1342
+
1343
+ interface ChatHeaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
1344
+ user: User;
1345
+ onBack?: () => void;
1346
+ onInfo?: () => void;
1347
+ }
1348
+ declare function ChatHeader({ user, onBack, onInfo, className, ...props }: ChatHeaderProps): react_jsx_runtime.JSX.Element;
1349
+
1350
+ interface MessageListProps extends React__default.HTMLAttributes<HTMLDivElement> {
1351
+ messages: Message[];
1352
+ currentUserId: string;
1353
+ onReply?: (message: Message) => void;
1354
+ onReact?: (message: Message, emoji: string) => void;
1355
+ onDelete?: (message: Message) => void;
1356
+ onLoadMore?: () => void;
1357
+ hasMore?: boolean;
1358
+ isLoadingMore?: boolean;
1359
+ }
1360
+ declare function MessageList({ messages, currentUserId, className, onReply, onReact, onDelete, onLoadMore, hasMore, isLoadingMore, ...props }: MessageListProps): react_jsx_runtime.JSX.Element;
1361
+
1362
+ interface MessageBubbleProps {
1363
+ message: Message;
1364
+ isOwn: boolean;
1365
+ showAvatar?: boolean;
1366
+ showStatus?: boolean;
1367
+ className?: string;
1368
+ onReply?: (message: Message) => void;
1369
+ onReact?: (message: Message, emoji: string) => void;
1370
+ onDelete?: (message: Message) => void;
1371
+ }
1372
+ declare function MessageBubble({ message, isOwn, showAvatar, showStatus, className, onReply, onReact, onDelete }: MessageBubbleProps): react_jsx_runtime.JSX.Element;
1373
+
1374
+ interface ChatInputProps extends React__default.HTMLAttributes<HTMLDivElement> {
1375
+ onSend?: (content: string) => void;
1376
+ onAttach?: () => void;
1377
+ placeholder?: string;
1378
+ users?: User[];
1379
+ }
1380
+ declare function ChatInput({ onSend, onAttach, placeholder, users, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1381
+
1382
+ interface ChatProfileProps extends React__default.HTMLAttributes<HTMLDivElement> {
1383
+ user: User;
1384
+ onClose?: () => void;
1385
+ }
1386
+ declare function ChatProfile({ user, onClose, className, ...props }: ChatProfileProps): react_jsx_runtime.JSX.Element;
1387
+
1388
+ declare const motionVariants: (props?: ({
1389
+ preset?: "blur" | "fade" | "spring" | "slide-right" | "slide-left" | "3d-flip" | null | undefined;
1390
+ visibleState?: "blur" | "fade" | "spring" | "slide-right" | "slide-left" | "3d-flip" | null | undefined;
1391
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1392
+ interface MotionProps extends React__default.HTMLAttributes<HTMLDivElement>, Omit<VariantProps<typeof motionVariants>, 'visibleState'> {
1393
+ asChild?: boolean;
1394
+ viewport?: boolean;
1395
+ visible?: boolean;
1396
+ delay?: number;
1397
+ once?: boolean;
1398
+ }
1399
+ declare function Motion({ className, preset, viewport, visible, delay, once, asChild, children, style, ...props }: MotionProps): react_jsx_runtime.JSX.Element;
1400
+
1401
+ interface MotionGroupProps extends React__default.HTMLAttributes<HTMLDivElement> {
1402
+ children: React__default.ReactNode;
1403
+ stagger?: number;
1404
+ delay?: number;
1405
+ }
1406
+ declare function MotionGroup({ children, stagger, delay, className, ...props }: MotionGroupProps): react_jsx_runtime.JSX.Element;
1407
+
1408
+ interface TextMotionProps extends React__default.HTMLAttributes<HTMLDivElement> {
1409
+ text: string;
1410
+ type?: 'char' | 'word';
1411
+ stagger?: number;
1412
+ delay?: number;
1413
+ }
1414
+ declare function TextMotion({ text, type, stagger, delay, className, ...props }: TextMotionProps): react_jsx_runtime.JSX.Element;
1415
+
1416
+ interface ParallaxProps extends React__default.HTMLAttributes<HTMLDivElement> {
1417
+ speed?: number;
1418
+ direction?: 'vertical' | 'horizontal';
1419
+ }
1420
+ declare function Parallax({ children, speed, direction, className, ...props }: ParallaxProps): react_jsx_runtime.JSX.Element;
1421
+
1422
+ interface MagneticProps {
1423
+ children: React__default.ReactElement;
1424
+ strength?: number;
1425
+ className?: string;
1426
+ }
1427
+ declare function Magnetic({ children, strength, className }: MagneticProps): react_jsx_runtime.JSX.Element;
1428
+
1429
+ interface NumberTickerProps extends React__default.HTMLAttributes<HTMLSpanElement> {
1430
+ value: number;
1431
+ duration?: number;
1432
+ delay?: number;
1433
+ decimalPlaces?: number;
1434
+ }
1435
+ declare function NumberTicker({ value, duration, delay, decimalPlaces, className, ...props }: NumberTickerProps): react_jsx_runtime.JSX.Element;
1436
+
1437
+ interface RevealProps extends React__default.HTMLAttributes<HTMLDivElement> {
1438
+ children: React__default.ReactNode;
1439
+ direction?: 'up' | 'down' | 'left' | 'right';
1440
+ duration?: number;
1441
+ delay?: number;
1442
+ boxColor?: string;
1443
+ }
1444
+ declare function Reveal({ children, direction, duration, delay, boxColor, className, ...props }: RevealProps): react_jsx_runtime.JSX.Element;
1445
+
1446
+ declare const separatorVariants: (props?: ({
1447
+ orientation?: "horizontal" | "vertical" | null | undefined;
1448
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1449
+ interface SeparatorProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof separatorVariants> {
1450
+ orientation?: "horizontal" | "vertical";
1451
+ decorative?: boolean;
1452
+ }
1453
+ declare const Separator: React__default.ForwardRefExoticComponent<SeparatorProps & React__default.RefAttributes<HTMLDivElement>>;
1454
+
1455
+ interface CollapseProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'title'> {
1456
+ title?: React__default.ReactNode;
1457
+ open?: boolean;
1458
+ defaultOpen?: boolean;
1459
+ onOpenChange?: (open: boolean) => void;
1460
+ disabled?: boolean;
1461
+ children: React__default.ReactNode;
1462
+ triggerClassName?: string;
1463
+ contentClassName?: string;
1464
+ }
1465
+ declare function Collapse({ title, open: controlledOpen, defaultOpen, onOpenChange, disabled, children, className, triggerClassName, contentClassName, ...props }: CollapseProps): react_jsx_runtime.JSX.Element;
1466
+
1467
+ interface PageLoaderProps extends React__default.HTMLAttributes<HTMLDivElement> {
1468
+ variant?: 'spinner' | 'bar' | 'dots' | 'logo' | 'glass';
1469
+ text?: string;
1470
+ fullscreen?: boolean;
1471
+ }
1472
+ declare function PageLoader({ variant, text, fullscreen, className, ...props }: PageLoaderProps): react_jsx_runtime.JSX.Element;
1473
+
1474
+ interface PageTransitionProps extends React__default.HTMLAttributes<HTMLDivElement> {
1475
+ preset?: 'fade' | 'slide-up' | 'scale' | 'blur' | 'none';
1476
+ duration?: number;
1477
+ useViewTransition?: boolean;
1478
+ }
1479
+ declare function PageTransition({ preset, duration, useViewTransition, className, children, ...props }: PageTransitionProps): react_jsx_runtime.JSX.Element;
1480
+
1481
+ declare function cn(...inputs: ClassValue[]): string;
1482
+
1483
+ export { AIPromptInput, type AIPromptInputProps, AIResponse, type AIResponseProps, type AIResponseSource, Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, type AlertProps, type AlertVariant, type Align, AreaChart, type AreaChartProps, type Attachment, Avatar, Background, type BackgroundProps, Badge, type BadgeProps, BarChart, type BarChartProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, type Breakpoint, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, type ChartContainerProps, type ChartContextValue, type ChartDataPoint, ChartGrid, ChartSkeleton, ChartTooltip, ChartXAxis, ChartYAxis, type ChatAttachment, ChatHeader, ChatInput, ChatLayout, ChatProfile, ChatSidebar, Checkbox, type CheckboxProps, Collapse, type CollapseProps, type Column, Combobox, ComboboxContent, ComboboxEmpty, ComboboxInput, ComboboxItem, type ComboboxItemProps, ComboboxList, type ComboboxProps, ComboboxTrigger, Command, CommandDialog, type CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandShortcut, Container, type ContainerProps, type Conversation, DataTable, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Dialog, DialogDescription, DialogFooter, DialogHeader, type DialogProps, DialogTitle, Divider, Drawer, DrawerDescription, DrawerFooter, DrawerHeader, type DrawerProps, DrawerTitle, DropdownMenu, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuProps, DropdownMenuSeparator, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, type FilterOption, FormControl, FormDescription, FormItem, FormLabel, FormMessage, GlowButton, type GlowButtonProps, Grid, type GridProps, Heading, type HeadingProps, HeroText, type HeroTextProps, Image, type ImageProps, Kanban, KanbanCalendarView, type KanbanColumn, KanbanFilterBar, type KanbanFilterBarProps, type KanbanProps, type KanbanTask, KanbanTaskModal, type KanbanTaskModalProps, Kbd, type KbdProps, Label, type LabelProps, LetterPullup, type LetterPullupProps, LineChart, type LineChartProps, Magnetic, type MagneticProps, Marquee, type MarqueeProps, type Message, MessageBubble, MessageList, type MessageStatus, type MessageType, MetricCard, type MetricCardProps, Modal, ModalDescription, ModalFooter, ModalHeader, type ModalProps, ModalTitle, Motion, MotionGroup, type MotionProps, Navbar, NumberInput, type NumberInputProps, NumberTicker, type NumberTickerProps, OTPInput, type OTPInputProps, PageLoader, type PageLoaderProps, PageTransition, type PageTransitionProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Parallax, PieChart, type PieChartProps, Popover, PopoverContent, type PopoverContentProps, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, PrimaryButton, Progress, type ProgressProps, type ProgressSize, type ProgressVariant, RadarChart, type RadarChartProps, type RadarDataPoint, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Rating, type RatingProps, Reveal, type RevealProps, ScrollArea, type ScrollAreaProps, ScrollProgress, type ScrollProgressProps, type ScrollValues, Select, type SelectOption, type SelectProps, Separator, type SeparatorProps, ShinyText, type ShinyTextProps, type Side, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spotlight, type SpotlightProps, Stack, type StackProps, StatusDot, type StatusDotProps, Stepper, type StepperProps, Surface, type SurfaceProps, Switch, type SwitchProps, Table, TableBody, TableCell, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Terminal, TerminalLine, type TerminalProps, Text, TextGradient, type TextGradientProps, TextInput, type TextInputProps, TextMotion, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, Timeline, TimelineItem, type TimelineItemProps, Toast, ToastContext, type ToastContextType, type ToastOptions, type ToastProps, ToastProvider, type ToastVariant, ToggleGroup, type ToggleGroupProps, Tooltip, type TooltipPosition, type TooltipProps, Tree, type TreeNode, type TreeProps, type User, UserMenu, type UserMenuProps, UserPreview, type UserPreviewProps, type UserStatus, type YAxisProps, cn, normalize, useBreakpoint, useChart, useContainerQuery, useFloating, useForm, useIntersection, useMediaQuery, useScroll, useTheme, useTimer, useToast };