nexoreui 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,2078 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React$1 from 'react';
3
+ import React__default from 'react';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as framer_motion from 'framer-motion';
6
+ import { HTMLMotionProps } from 'framer-motion';
7
+ import * as react_jsx_runtime from 'react/jsx-runtime';
8
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
9
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
12
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
13
+ import * as SwitchPrimitive from '@radix-ui/react-switch';
14
+ import * as SelectPrimitive from '@radix-ui/react-select';
15
+ import { Toaster as Toaster$1 } from 'sonner';
16
+ export { toast } from 'sonner';
17
+ import * as lucide_react from 'lucide-react';
18
+ import { LucideIcon } from 'lucide-react';
19
+ import { ClassValue } from 'clsx';
20
+
21
+ declare const buttonVariants: (props?: ({
22
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | "premium" | "neon" | "glass" | "shimmer" | null | undefined;
23
+ size?: "default" | "sm" | "lg" | "icon" | null | undefined;
24
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
25
+ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
26
+ /** Enable hover/tap motion animation @default true */
27
+ animate?: boolean;
28
+ /** Enable shimmer light effect across the button */
29
+ shimmer?: boolean;
30
+ /** Enable neon glow effect */
31
+ glow?: boolean;
32
+ children?: React$1.ReactNode;
33
+ className?: string;
34
+ }
35
+ declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
36
+
37
+ declare const cardVariants: (props?: ({
38
+ variant?: "default" | "glass" | "glow" | "gradient" | null | undefined;
39
+ hover?: "glow" | "none" | "lift" | null | undefined;
40
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
41
+ interface CardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, keyof HTMLMotionProps<"div">>, VariantProps<typeof cardVariants> {
42
+ /**
43
+ * Whether to enable hover animations
44
+ * @default true
45
+ */
46
+ animate?: boolean;
47
+ /**
48
+ * The title of the card
49
+ */
50
+ title?: React$1.ReactNode;
51
+ /**
52
+ * The description of the card
53
+ */
54
+ description?: React$1.ReactNode;
55
+ /**
56
+ * The footer content of the card
57
+ */
58
+ footer?: React$1.ReactNode;
59
+ /**
60
+ * An image URL to display at the top of the card
61
+ */
62
+ image?: string;
63
+ }
64
+ declare const Card: React$1.ForwardRefExoticComponent<Omit<CardProps & {
65
+ className?: string | undefined;
66
+ defaultChecked?: boolean | undefined;
67
+ defaultValue?: string | number | readonly string[] | undefined;
68
+ suppressContentEditableWarning?: boolean | undefined;
69
+ suppressHydrationWarning?: boolean | undefined;
70
+ accessKey?: string | undefined;
71
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
72
+ autoFocus?: boolean | undefined;
73
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
74
+ contextMenu?: string | undefined;
75
+ dir?: string | undefined;
76
+ draggable?: (boolean | "true" | "false") | undefined;
77
+ enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
78
+ hidden?: boolean | undefined;
79
+ id?: string | undefined;
80
+ lang?: string | undefined;
81
+ nonce?: string | undefined;
82
+ slot?: string | undefined;
83
+ spellCheck?: (boolean | "true" | "false") | undefined;
84
+ tabIndex?: number | undefined;
85
+ title?: string | undefined;
86
+ translate?: "yes" | "no" | undefined;
87
+ radioGroup?: string | undefined;
88
+ role?: React$1.AriaRole | undefined;
89
+ about?: string | undefined;
90
+ content?: string | undefined;
91
+ datatype?: string | undefined;
92
+ inlist?: any;
93
+ prefix?: string | undefined;
94
+ property?: string | undefined;
95
+ rel?: string | undefined;
96
+ resource?: string | undefined;
97
+ rev?: string | undefined;
98
+ typeof?: string | undefined;
99
+ vocab?: string | undefined;
100
+ autoCorrect?: string | undefined;
101
+ autoSave?: string | undefined;
102
+ color?: string | undefined;
103
+ itemProp?: string | undefined;
104
+ itemScope?: boolean | undefined;
105
+ itemType?: string | undefined;
106
+ itemID?: string | undefined;
107
+ itemRef?: string | undefined;
108
+ results?: number | undefined;
109
+ security?: string | undefined;
110
+ unselectable?: "off" | "on" | undefined;
111
+ popover?: "" | "auto" | "manual" | "hint" | undefined;
112
+ popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
113
+ popoverTarget?: string | undefined;
114
+ inert?: boolean | undefined;
115
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
116
+ is?: string | undefined;
117
+ exportparts?: string | undefined;
118
+ part?: string | undefined;
119
+ "aria-activedescendant"?: string | undefined;
120
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
121
+ "aria-autocomplete"?: "none" | "list" | "inline" | "both" | undefined;
122
+ "aria-braillelabel"?: string | undefined;
123
+ "aria-brailleroledescription"?: string | undefined;
124
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
125
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
126
+ "aria-colcount"?: number | undefined;
127
+ "aria-colindex"?: number | undefined;
128
+ "aria-colindextext"?: string | undefined;
129
+ "aria-colspan"?: number | undefined;
130
+ "aria-controls"?: string | undefined;
131
+ "aria-current"?: boolean | "true" | "false" | "time" | "page" | "step" | "location" | "date" | undefined;
132
+ "aria-describedby"?: string | undefined;
133
+ "aria-description"?: string | undefined;
134
+ "aria-details"?: string | undefined;
135
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
136
+ "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
137
+ "aria-errormessage"?: string | undefined;
138
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
139
+ "aria-flowto"?: string | undefined;
140
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
141
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
142
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
143
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
144
+ "aria-keyshortcuts"?: string | undefined;
145
+ "aria-label"?: string | undefined;
146
+ "aria-labelledby"?: string | undefined;
147
+ "aria-level"?: number | undefined;
148
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
149
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
150
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
151
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
152
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
153
+ "aria-owns"?: string | undefined;
154
+ "aria-placeholder"?: string | undefined;
155
+ "aria-posinset"?: number | undefined;
156
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
157
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
158
+ "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
159
+ "aria-required"?: (boolean | "true" | "false") | undefined;
160
+ "aria-roledescription"?: string | undefined;
161
+ "aria-rowcount"?: number | undefined;
162
+ "aria-rowindex"?: number | undefined;
163
+ "aria-rowindextext"?: string | undefined;
164
+ "aria-rowspan"?: number | undefined;
165
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
166
+ "aria-setsize"?: number | undefined;
167
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
168
+ "aria-valuemax"?: number | undefined;
169
+ "aria-valuemin"?: number | undefined;
170
+ "aria-valuenow"?: number | undefined;
171
+ "aria-valuetext"?: string | undefined;
172
+ dangerouslySetInnerHTML?: {
173
+ __html: string | TrustedHTML;
174
+ } | undefined;
175
+ onCopy?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
176
+ onCopyCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
177
+ onCut?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
178
+ onCutCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
179
+ onPaste?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
180
+ onPasteCapture?: React$1.ClipboardEventHandler<HTMLDivElement> | undefined;
181
+ onCompositionEnd?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
182
+ onCompositionEndCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
183
+ onCompositionStart?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
184
+ onCompositionStartCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
185
+ onCompositionUpdate?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
186
+ onCompositionUpdateCapture?: React$1.CompositionEventHandler<HTMLDivElement> | undefined;
187
+ onFocus?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
188
+ onFocusCapture?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
189
+ onBlur?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
190
+ onBlurCapture?: React$1.FocusEventHandler<HTMLDivElement> | undefined;
191
+ onChange?: React$1.ChangeEventHandler<HTMLDivElement, Element> | undefined;
192
+ onChangeCapture?: React$1.ChangeEventHandler<HTMLDivElement, Element> | undefined;
193
+ onBeforeInput?: React$1.InputEventHandler<HTMLDivElement> | undefined;
194
+ onBeforeInputCapture?: React$1.InputEventHandler<HTMLDivElement> | undefined;
195
+ onInput?: React$1.InputEventHandler<HTMLDivElement> | undefined;
196
+ onInputCapture?: React$1.InputEventHandler<HTMLDivElement> | undefined;
197
+ onReset?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
198
+ onResetCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
199
+ onSubmit?: React$1.SubmitEventHandler<HTMLDivElement> | undefined;
200
+ onSubmitCapture?: React$1.SubmitEventHandler<HTMLDivElement> | undefined;
201
+ onInvalid?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
202
+ onInvalidCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
203
+ onLoad?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
204
+ onLoadCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
205
+ onError?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
206
+ onErrorCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
207
+ onKeyDown?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
208
+ onKeyDownCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
209
+ onKeyPress?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
210
+ onKeyPressCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
211
+ onKeyUp?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
212
+ onKeyUpCapture?: React$1.KeyboardEventHandler<HTMLDivElement> | undefined;
213
+ onAbort?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
214
+ onAbortCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
215
+ onCanPlay?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
216
+ onCanPlayCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
217
+ onCanPlayThrough?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
218
+ onCanPlayThroughCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
219
+ onDurationChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
220
+ onDurationChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
221
+ onEmptied?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
222
+ onEmptiedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
223
+ onEncrypted?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
224
+ onEncryptedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
225
+ onEnded?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
226
+ onEndedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
227
+ onLoadedData?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
228
+ onLoadedDataCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
229
+ onLoadedMetadata?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
230
+ onLoadedMetadataCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
231
+ onLoadStart?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
232
+ onLoadStartCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
233
+ onPause?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
234
+ onPauseCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
235
+ onPlay?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
236
+ onPlayCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
237
+ onPlaying?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
238
+ onPlayingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
239
+ onProgress?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
240
+ onProgressCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
241
+ onRateChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
242
+ onRateChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
243
+ onSeeked?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
244
+ onSeekedCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
245
+ onSeeking?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
246
+ onSeekingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
247
+ onStalled?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
248
+ onStalledCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
249
+ onSuspend?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
250
+ onSuspendCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
251
+ onTimeUpdate?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
252
+ onTimeUpdateCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
253
+ onVolumeChange?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
254
+ onVolumeChangeCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
255
+ onWaiting?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
256
+ onWaitingCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
257
+ onAuxClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
258
+ onAuxClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
259
+ onClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
260
+ onClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
261
+ onContextMenu?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
262
+ onContextMenuCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
263
+ onDoubleClick?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
264
+ onDoubleClickCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
265
+ onDragCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
266
+ onDragEndCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
267
+ onDragEnter?: React$1.DragEventHandler<HTMLDivElement> | undefined;
268
+ onDragEnterCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
269
+ onDragExit?: React$1.DragEventHandler<HTMLDivElement> | undefined;
270
+ onDragExitCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
271
+ onDragLeave?: React$1.DragEventHandler<HTMLDivElement> | undefined;
272
+ onDragLeaveCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
273
+ onDragOver?: React$1.DragEventHandler<HTMLDivElement> | undefined;
274
+ onDragOverCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
275
+ onDragStartCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
276
+ onDrop?: React$1.DragEventHandler<HTMLDivElement> | undefined;
277
+ onDropCapture?: React$1.DragEventHandler<HTMLDivElement> | undefined;
278
+ onMouseDown?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
279
+ onMouseDownCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
280
+ onMouseEnter?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
281
+ onMouseLeave?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
282
+ onMouseMove?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
283
+ onMouseMoveCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
284
+ onMouseOut?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
285
+ onMouseOutCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
286
+ onMouseOver?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
287
+ onMouseOverCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
288
+ onMouseUp?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
289
+ onMouseUpCapture?: React$1.MouseEventHandler<HTMLDivElement> | undefined;
290
+ onSelect?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
291
+ onSelectCapture?: React$1.ReactEventHandler<HTMLDivElement> | undefined;
292
+ onTouchCancel?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
293
+ onTouchCancelCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
294
+ onTouchEnd?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
295
+ onTouchEndCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
296
+ onTouchMove?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
297
+ onTouchMoveCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
298
+ onTouchStart?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
299
+ onTouchStartCapture?: React$1.TouchEventHandler<HTMLDivElement> | undefined;
300
+ onPointerDown?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
301
+ onPointerDownCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
302
+ onPointerMove?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
303
+ onPointerMoveCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
304
+ onPointerUp?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
305
+ onPointerUpCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
306
+ onPointerCancel?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
307
+ onPointerCancelCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
308
+ onPointerEnter?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
309
+ onPointerLeave?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
310
+ onPointerOver?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
311
+ onPointerOverCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
312
+ onPointerOut?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
313
+ onPointerOutCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
314
+ onGotPointerCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
315
+ onGotPointerCaptureCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
316
+ onLostPointerCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
317
+ onLostPointerCaptureCapture?: React$1.PointerEventHandler<HTMLDivElement> | undefined;
318
+ onScroll?: React$1.UIEventHandler<HTMLDivElement> | undefined;
319
+ onScrollCapture?: React$1.UIEventHandler<HTMLDivElement> | undefined;
320
+ onScrollEnd?: React$1.UIEventHandler<HTMLDivElement> | undefined;
321
+ onScrollEndCapture?: React$1.UIEventHandler<HTMLDivElement> | undefined;
322
+ onWheel?: React$1.WheelEventHandler<HTMLDivElement> | undefined;
323
+ onWheelCapture?: React$1.WheelEventHandler<HTMLDivElement> | undefined;
324
+ onAnimationStartCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
325
+ onAnimationEnd?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
326
+ onAnimationEndCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
327
+ onAnimationIteration?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
328
+ onAnimationIterationCapture?: React$1.AnimationEventHandler<HTMLDivElement> | undefined;
329
+ onToggle?: React$1.ToggleEventHandler<HTMLDivElement> | undefined;
330
+ onBeforeToggle?: React$1.ToggleEventHandler<HTMLDivElement> | undefined;
331
+ onTransitionCancel?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
332
+ onTransitionCancelCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
333
+ onTransitionEnd?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
334
+ onTransitionEndCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
335
+ onTransitionRun?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
336
+ onTransitionRunCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
337
+ onTransitionStart?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
338
+ onTransitionStartCapture?: React$1.TransitionEventHandler<HTMLDivElement> | undefined;
339
+ ref?: React$1.Ref<HTMLDivElement> | undefined;
340
+ key?: React$1.Key | null | undefined;
341
+ } & framer_motion.MotionProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
342
+ declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
343
+ declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
344
+ declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
345
+ declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
346
+ declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
347
+
348
+ declare const inputVariants: (props?: ({
349
+ variant?: "default" | "glass" | "underline" | "gradient" | null | undefined;
350
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
351
+ interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof inputVariants> {
352
+ animate?: boolean;
353
+ }
354
+ declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
355
+
356
+ declare const badgeVariants: (props?: ({
357
+ variant?: "default" | "secondary" | "destructive" | "outline" | "neon" | "gradient" | "success" | null | undefined;
358
+ size?: "default" | "sm" | "lg" | null | undefined;
359
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
360
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
361
+ /**
362
+ * Whether to show a pulse animation on the dot
363
+ * @default false
364
+ */
365
+ pulse?: boolean;
366
+ /**
367
+ * Whether to show a dot indicator
368
+ * @default false
369
+ */
370
+ dot?: boolean;
371
+ }
372
+ declare function Badge({ className, variant, size, pulse, dot, children, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
373
+
374
+ declare const avatarVariants: (props?: ({
375
+ size?: "default" | "sm" | "lg" | "xl" | null | undefined;
376
+ variant?: "default" | "glow" | "gradient" | null | undefined;
377
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
378
+ interface AvatarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof avatarVariants> {
379
+ status?: "online" | "offline" | "away" | "busy";
380
+ }
381
+ declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLDivElement>>;
382
+ interface AvatarImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
383
+ }
384
+ declare const AvatarImage: React$1.ForwardRefExoticComponent<AvatarImageProps & React$1.RefAttributes<HTMLImageElement>>;
385
+ declare const AvatarFallback: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
386
+
387
+ declare const TabsRoot: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
388
+ declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
389
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
390
+ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
391
+ interface TabsItem {
392
+ label: React$1.ReactNode;
393
+ value: string;
394
+ content: React$1.ReactNode;
395
+ }
396
+ interface TabsProps {
397
+ /**
398
+ * The array of tab items
399
+ */
400
+ items?: TabsItem[];
401
+ /**
402
+ * The default active tab value
403
+ */
404
+ defaultValue?: string;
405
+ /**
406
+ * The variant of the tabs
407
+ * @default "default"
408
+ */
409
+ variant?: "default" | "glass" | "outline";
410
+ /**
411
+ * Additional class names
412
+ */
413
+ className?: string;
414
+ /**
415
+ * Children for compound usage
416
+ */
417
+ children?: React$1.ReactNode;
418
+ }
419
+ declare function Tabs({ items, defaultValue, variant, className, children, }: TabsProps): react_jsx_runtime.JSX.Element;
420
+
421
+ declare const AccordionRoot: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
422
+ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
423
+ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
424
+ declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
425
+ interface AccordionItemData {
426
+ title: React$1.ReactNode;
427
+ content: React$1.ReactNode;
428
+ }
429
+ interface AccordionProps {
430
+ /**
431
+ * The array of accordion items
432
+ */
433
+ items: AccordionItemData[];
434
+ /**
435
+ * The type of accordion
436
+ * @default "single"
437
+ */
438
+ type?: "single" | "multiple";
439
+ /**
440
+ * The variant of the accordion
441
+ * @default "default"
442
+ */
443
+ variant?: "default" | "glass" | "outline";
444
+ /**
445
+ * Additional class names
446
+ */
447
+ className?: string;
448
+ /**
449
+ * Whether the items can be collapsed (only for type="single")
450
+ * @default true
451
+ */
452
+ collapsible?: boolean;
453
+ }
454
+ declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps): react_jsx_runtime.JSX.Element;
455
+
456
+ declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
457
+ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
458
+ declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
459
+ declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
460
+ declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
461
+ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
462
+ declare const DialogHeader: {
463
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
464
+ displayName: string;
465
+ };
466
+ declare const DialogFooter: {
467
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
468
+ displayName: string;
469
+ };
470
+ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
471
+ declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
472
+
473
+ interface ModalProps {
474
+ /**
475
+ * The title of the modal
476
+ */
477
+ title?: React$1.ReactNode;
478
+ /**
479
+ * The description of the modal
480
+ */
481
+ description?: React$1.ReactNode;
482
+ /**
483
+ * The content of the modal
484
+ */
485
+ children?: React$1.ReactNode;
486
+ /**
487
+ * The trigger element to open the modal
488
+ */
489
+ trigger?: React$1.ReactNode;
490
+ /**
491
+ * Callback function called when the confirm button is clicked
492
+ */
493
+ onConfirm?: () => void;
494
+ /**
495
+ * Callback function called when the cancel button is clicked
496
+ */
497
+ onCancel?: () => void;
498
+ /**
499
+ * The text for the confirm button
500
+ * @default "Confirm"
501
+ */
502
+ confirmText?: string;
503
+ /**
504
+ * The text for the cancel button
505
+ * @default "Cancel"
506
+ */
507
+ cancelText?: string;
508
+ /**
509
+ * Whether the modal is open
510
+ */
511
+ isOpen?: boolean;
512
+ /**
513
+ * Callback function called when the open state changes
514
+ */
515
+ onOpenChange?: (open: boolean) => void;
516
+ /**
517
+ * The variant of the modal
518
+ * @default "default"
519
+ */
520
+ variant?: "default" | "glass" | "destructive" | "success" | "fullscreen" | "drawer";
521
+ /**
522
+ * Whether the content is scrollable
523
+ * @default false
524
+ */
525
+ scrollable?: boolean;
526
+ /**
527
+ * Additional className for the dialog content
528
+ */
529
+ className?: string;
530
+ }
531
+ declare function Modal({ title, description, children, trigger, onConfirm, onCancel, confirmText, cancelText, isOpen, onOpenChange, variant, scrollable, className, }: ModalProps): react_jsx_runtime.JSX.Element;
532
+
533
+ declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
534
+ declare const TooltipRoot: React$1.FC<TooltipPrimitive.TooltipProps>;
535
+ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
536
+ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
537
+ interface TooltipProps {
538
+ /**
539
+ * The content to display in the tooltip
540
+ */
541
+ content: React$1.ReactNode;
542
+ /**
543
+ * The element that triggers the tooltip
544
+ */
545
+ children: React$1.ReactNode;
546
+ /**
547
+ * The side of the trigger to display the tooltip on
548
+ * @default "top"
549
+ */
550
+ side?: "top" | "bottom" | "left" | "right";
551
+ /**
552
+ * The delay in milliseconds before the tooltip opens
553
+ * @default 700
554
+ */
555
+ delay?: number;
556
+ }
557
+ declare function Tooltip({ content, children, side, delay, }: TooltipProps): react_jsx_runtime.JSX.Element;
558
+
559
+ declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
560
+
561
+ declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
562
+
563
+ declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
564
+ declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
565
+ declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
566
+ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
567
+ declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
568
+ declare const SelectLabel: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
569
+ declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
570
+
571
+ declare const alertVariants$1: (props?: ({
572
+ variant?: "default" | "destructive" | "glass" | "success" | "warning" | "info" | null | undefined;
573
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
574
+ interface AlertProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants$1> {
575
+ /**
576
+ * Whether to enable entry animations
577
+ * @default true
578
+ */
579
+ animate?: boolean;
580
+ /**
581
+ * The title of the alert
582
+ */
583
+ title?: React$1.ReactNode;
584
+ /**
585
+ * The description of the alert
586
+ */
587
+ description?: React$1.ReactNode;
588
+ /**
589
+ * An optional icon to display
590
+ */
591
+ icon?: React$1.ReactNode;
592
+ /**
593
+ * Whether the alert can be dismissed
594
+ */
595
+ dismissible?: boolean;
596
+ /**
597
+ * Callback function called when the alert is dismissed
598
+ */
599
+ onDismiss?: () => void;
600
+ }
601
+ declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
602
+ declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
603
+ declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
604
+
605
+ type ToasterProps = React.ComponentProps<typeof Toaster$1>;
606
+ declare function Toaster({ ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
607
+
608
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
609
+ /**
610
+ * The width of the skeleton
611
+ */
612
+ width?: string | number;
613
+ /**
614
+ * The height of the skeleton
615
+ */
616
+ height?: string | number;
617
+ /**
618
+ * The variant of the skeleton
619
+ * @default "rect"
620
+ */
621
+ variant?: "line" | "circle" | "rect";
622
+ /**
623
+ * The number of skeletons to render
624
+ * @default 1
625
+ */
626
+ count?: number;
627
+ /**
628
+ * Whether the skeleton is animated
629
+ * @default true
630
+ */
631
+ animated?: boolean;
632
+ }
633
+ declare function Skeleton({ className, width, height, variant, count, animated, style, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
634
+
635
+ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
636
+ /**
637
+ * The current value of the progress bar
638
+ * @default 0
639
+ */
640
+ value?: number;
641
+ /**
642
+ * The maximum value of the progress bar
643
+ * @default 100
644
+ */
645
+ max?: number;
646
+ /**
647
+ * The variant of the progress bar
648
+ * @default "default"
649
+ */
650
+ variant?: "default" | "success" | "warning" | "error";
651
+ /**
652
+ * Whether to show the percentage label
653
+ * @default false
654
+ */
655
+ showLabel?: boolean;
656
+ /**
657
+ * The size of the progress bar
658
+ * @default "default"
659
+ */
660
+ size?: "default" | "sm" | "lg";
661
+ /**
662
+ * Whether the progress bar is animated
663
+ * @default true
664
+ */
665
+ animated?: boolean;
666
+ /**
667
+ * Whether the progress bar is in an indeterminate loading state
668
+ * @default false
669
+ */
670
+ isIndeterminate?: boolean;
671
+ }
672
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
673
+
674
+ interface SliderProps {
675
+ /**
676
+ * The minimum value
677
+ * @default 0
678
+ */
679
+ min?: number;
680
+ /**
681
+ * The maximum value
682
+ * @default 100
683
+ */
684
+ max?: number;
685
+ /**
686
+ * The step value
687
+ * @default 1
688
+ */
689
+ step?: number;
690
+ /**
691
+ * The current value
692
+ */
693
+ value?: number;
694
+ /**
695
+ * Callback function called when the value changes
696
+ */
697
+ onChange?: (value: number) => void;
698
+ /**
699
+ * Whether to show the current value
700
+ * @default false
701
+ */
702
+ showValue?: boolean;
703
+ /**
704
+ * The variant of the slider
705
+ * @default "default"
706
+ */
707
+ variant?: "default" | "success" | "warning" | "error";
708
+ /**
709
+ * Additional class names
710
+ */
711
+ className?: string;
712
+ }
713
+ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLSpanElement>>;
714
+
715
+ /** Props shared by all special button variants */
716
+ interface SpecialButtonBaseProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
717
+ children?: React$1.ReactNode;
718
+ className?: string;
719
+ }
720
+ interface GlowButtonProps extends SpecialButtonBaseProps {
721
+ /** Color of the glow behind the button */
722
+ glowColor?: string;
723
+ }
724
+ declare const GlowButton: React$1.ForwardRefExoticComponent<GlowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
725
+ declare const ShinyButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
726
+ declare const GradientButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
727
+ declare const GlassButton: React$1.ForwardRefExoticComponent<SpecialButtonBaseProps & React$1.RefAttributes<HTMLButtonElement>>;
728
+
729
+ declare const alertVariants: {
730
+ info: {
731
+ icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
732
+ color: string;
733
+ gradient: string;
734
+ };
735
+ warning: {
736
+ icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
737
+ color: string;
738
+ gradient: string;
739
+ };
740
+ success: {
741
+ icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
742
+ color: string;
743
+ gradient: string;
744
+ };
745
+ error: {
746
+ icon: React$1.ForwardRefExoticComponent<Omit<lucide_react.LucideProps, "ref"> & React$1.RefAttributes<SVGSVGElement>>;
747
+ color: string;
748
+ gradient: string;
749
+ };
750
+ };
751
+ interface SpecialAlertProps extends React$1.HTMLAttributes<HTMLDivElement> {
752
+ variant?: keyof typeof alertVariants;
753
+ title?: string;
754
+ description?: string;
755
+ }
756
+ declare function GlassAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
757
+ declare function GradientAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
758
+ declare function DismissibleAlert({ variant, title, description, className, ...props }: SpecialAlertProps): react_jsx_runtime.JSX.Element;
759
+
760
+ declare const SearchInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
761
+ declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
762
+ declare const GlassInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
763
+ declare const GradientInput: React$1.ForwardRefExoticComponent<Omit<InputProps & React$1.RefAttributes<HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
764
+
765
+ declare function GlassCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
766
+ declare function GlowCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
767
+ declare function GradientCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
768
+ declare function HoverCard({ className, ...props }: React$1.ComponentProps<typeof Card>): react_jsx_runtime.JSX.Element;
769
+
770
+ declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
771
+ interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
772
+ limit?: number;
773
+ items: {
774
+ src?: string;
775
+ fallback: string;
776
+ }[];
777
+ }
778
+ declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
779
+ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
780
+ title: string;
781
+ value: string;
782
+ description?: string;
783
+ icon?: LucideIcon;
784
+ trend?: {
785
+ value: string;
786
+ positive: boolean;
787
+ };
788
+ }
789
+ declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
790
+ interface TimelineItem {
791
+ title: string;
792
+ description: string;
793
+ time: string;
794
+ status?: "completed" | "current" | "upcoming";
795
+ }
796
+ declare function Timeline({ items, className }: {
797
+ items: TimelineItem[];
798
+ className?: string;
799
+ }): react_jsx_runtime.JSX.Element;
800
+ interface CodeBlockProps extends React$1.HTMLAttributes<HTMLDivElement> {
801
+ code: string;
802
+ language?: string;
803
+ }
804
+ declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): react_jsx_runtime.JSX.Element;
805
+ interface PricingCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
806
+ title: string;
807
+ price: string;
808
+ description: string;
809
+ features: string[];
810
+ buttonText?: string;
811
+ popular?: boolean;
812
+ }
813
+ declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): react_jsx_runtime.JSX.Element;
814
+ interface DividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
815
+ /**
816
+ * The orientation of the divider
817
+ * @default "horizontal"
818
+ */
819
+ orientation?: "horizontal" | "vertical";
820
+ }
821
+ declare function Divider({ orientation, className, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
822
+
823
+ interface BreadcrumbProps extends React$1.HTMLAttributes<HTMLElement> {
824
+ items: {
825
+ label: string;
826
+ href?: string;
827
+ }[];
828
+ separator?: React$1.ReactNode;
829
+ }
830
+ declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
831
+ interface PaginationProps extends React$1.HTMLAttributes<HTMLElement> {
832
+ totalPages: number;
833
+ currentPage: number;
834
+ onPageChange?: (page: number) => void;
835
+ }
836
+ declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
837
+ interface Step {
838
+ title: string;
839
+ description?: string;
840
+ status: "complete" | "current" | "upcoming";
841
+ }
842
+ declare function Steps({ items, className }: {
843
+ items: Step[];
844
+ className?: string;
845
+ }): react_jsx_runtime.JSX.Element;
846
+
847
+ declare function GlowBadge({ className, variant, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
848
+ declare function GlassBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
849
+ interface DotBadgeProps extends React$1.ComponentProps<typeof Badge> {
850
+ dotColor?: string;
851
+ }
852
+ declare function DotBadge({ className, dotColor, children, ...props }: DotBadgeProps): react_jsx_runtime.JSX.Element;
853
+ declare function GradientBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
854
+ declare function OutlineGlowBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
855
+ declare function PulseBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
856
+ declare function SoftBadge({ className, variant, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
857
+ declare function TagBadge({ className, children, onRemove, ...props }: React$1.ComponentProps<typeof Badge> & {
858
+ onRemove?: () => void;
859
+ }): react_jsx_runtime.JSX.Element;
860
+ declare function PremiumBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
861
+ declare function MinimalBadge({ className, ...props }: React$1.ComponentProps<typeof Badge>): react_jsx_runtime.JSX.Element;
862
+
863
+ declare function SpinnerLoader({ className, size }: {
864
+ className?: string;
865
+ size?: number;
866
+ }): react_jsx_runtime.JSX.Element;
867
+ declare function DotsLoader({ className }: {
868
+ className?: string;
869
+ }): react_jsx_runtime.JSX.Element;
870
+ declare function PulseLoader({ className }: {
871
+ className?: string;
872
+ }): react_jsx_runtime.JSX.Element;
873
+ declare function BarLoader({ className }: {
874
+ className?: string;
875
+ }): react_jsx_runtime.JSX.Element;
876
+ declare function CircleLoader({ className, size }: {
877
+ className?: string;
878
+ size?: number;
879
+ }): react_jsx_runtime.JSX.Element;
880
+ declare function RingLoader({ className }: {
881
+ className?: string;
882
+ }): react_jsx_runtime.JSX.Element;
883
+ declare function TextLoader({ text, className }: {
884
+ text?: string;
885
+ className?: string;
886
+ }): react_jsx_runtime.JSX.Element;
887
+ declare function ProgressRing({ progress, size, strokeWidth, className }: {
888
+ progress?: number;
889
+ size?: number;
890
+ strokeWidth?: number;
891
+ className?: string;
892
+ }): react_jsx_runtime.JSX.Element;
893
+ declare function SkeletonCard({ className }: {
894
+ className?: string;
895
+ }): react_jsx_runtime.JSX.Element;
896
+ declare function ShimmerBlock({ className }: {
897
+ className?: string;
898
+ }): react_jsx_runtime.JSX.Element;
899
+
900
+ interface GlassModalProps {
901
+ /** Trigger element that opens the modal */
902
+ trigger: React$1.ReactNode;
903
+ /** Modal title */
904
+ title: string;
905
+ /** Optional modal description */
906
+ description?: string;
907
+ /** Modal body content */
908
+ children?: React$1.ReactNode;
909
+ /** Control open state externally */
910
+ open?: boolean;
911
+ /** Callback when open state changes */
912
+ onOpenChange?: (open: boolean) => void;
913
+ }
914
+ declare function GlassModal({ trigger, title, description, children, open, onOpenChange }: GlassModalProps): react_jsx_runtime.JSX.Element;
915
+ interface AlertModalProps {
916
+ /** Trigger element that opens the modal */
917
+ trigger: React$1.ReactNode;
918
+ /** Modal title */
919
+ title: string;
920
+ /** Optional modal description */
921
+ description?: string;
922
+ /** Callback when user confirms the action */
923
+ onConfirm?: () => void;
924
+ /** Modal body content */
925
+ children?: React$1.ReactNode;
926
+ /** Control open state externally */
927
+ open?: boolean;
928
+ /** Callback when open state changes */
929
+ onOpenChange?: (open: boolean) => void;
930
+ }
931
+ declare function AlertModal({ trigger, title, description, onConfirm, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
932
+ interface SuccessModalProps {
933
+ /** Trigger element */
934
+ trigger: React$1.ReactNode;
935
+ /** Modal title */
936
+ title: string;
937
+ /** Optional description */
938
+ description?: string;
939
+ /** Modal body content */
940
+ children?: React$1.ReactNode;
941
+ /** Control open state externally */
942
+ open?: boolean;
943
+ /** Callback when open state changes */
944
+ onOpenChange?: (open: boolean) => void;
945
+ }
946
+ declare function SuccessModal({ trigger, title, description, children, open, onOpenChange }: SuccessModalProps): react_jsx_runtime.JSX.Element;
947
+ interface CommandPaletteModalProps {
948
+ /** Trigger element */
949
+ trigger: React$1.ReactNode;
950
+ /** Control open state externally */
951
+ open?: boolean;
952
+ /** Callback when open state changes */
953
+ onOpenChange?: (open: boolean) => void;
954
+ }
955
+ declare function CommandPaletteModal({ trigger, open, onOpenChange }: CommandPaletteModalProps): react_jsx_runtime.JSX.Element;
956
+ interface BottomSheetSimulatedProps {
957
+ /** Trigger element */
958
+ trigger: React$1.ReactNode;
959
+ /** Content inside the bottom sheet */
960
+ children?: React$1.ReactNode;
961
+ /** Control open state externally */
962
+ open?: boolean;
963
+ /** Callback when open state changes */
964
+ onOpenChange?: (open: boolean) => void;
965
+ }
966
+ declare function BottomSheetSimulated({ trigger, children, open, onOpenChange }: BottomSheetSimulatedProps): react_jsx_runtime.JSX.Element;
967
+
968
+ /** Shared props for avatar components */
969
+ interface AvatarBaseProps {
970
+ /** Additional CSS classes */
971
+ className?: string;
972
+ /** Avatar image source URL */
973
+ src?: string;
974
+ /** Fallback text/initials */
975
+ fallback: string;
976
+ }
977
+ declare function GlowAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
978
+ interface StatusAvatarProps extends AvatarBaseProps {
979
+ /** Current status */
980
+ status?: "online" | "offline" | "busy" | "away";
981
+ }
982
+ declare function StatusAvatar({ className, src, fallback, status }: StatusAvatarProps): react_jsx_runtime.JSX.Element;
983
+ declare function HexagonAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
984
+ declare function SquircleAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
985
+ declare function GradientRingAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
986
+ interface InitialsAvatarProps {
987
+ /** Additional CSS classes */
988
+ className?: string;
989
+ /** User's full name for generating initials */
990
+ name?: string;
991
+ }
992
+ declare function InitialsAvatar({ className, name }: InitialsAvatarProps): react_jsx_runtime.JSX.Element;
993
+ declare function OutlineAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
994
+ declare function HoverExpandAvatar({ className, src, fallback }: AvatarBaseProps): react_jsx_runtime.JSX.Element;
995
+
996
+ declare function GlowCheckbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox>): react_jsx_runtime.JSX.Element;
997
+ declare function CircularCheckbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox>): react_jsx_runtime.JSX.Element;
998
+ interface CardCheckboxProps {
999
+ /** Title text for the card */
1000
+ title: string;
1001
+ /** Optional description text */
1002
+ description?: string;
1003
+ /** Whether the card is checked */
1004
+ checked?: boolean;
1005
+ /** Callback when checked state changes */
1006
+ onCheckedChange?: (checked: boolean) => void;
1007
+ /** Additional CSS classes */
1008
+ className?: string;
1009
+ }
1010
+ declare function CardCheckbox({ title, description, checked, onCheckedChange, className }: CardCheckboxProps): react_jsx_runtime.JSX.Element;
1011
+ interface IconSwitchProps {
1012
+ /** Whether the switch is checked */
1013
+ checked?: boolean;
1014
+ /** Callback when checked state changes */
1015
+ onCheckedChange?: (checked: boolean) => void;
1016
+ /** Additional CSS classes */
1017
+ className?: string;
1018
+ /** Icon/emoji to show when ON */
1019
+ iconOn?: React$1.ReactNode;
1020
+ /** Icon/emoji to show when OFF */
1021
+ iconOff?: React$1.ReactNode;
1022
+ }
1023
+ declare function IconSwitch({ checked, onCheckedChange, className, iconOn, iconOff }: IconSwitchProps): react_jsx_runtime.JSX.Element;
1024
+ declare function ThickSwitch({ className, ...props }: React$1.ComponentProps<typeof Switch>): react_jsx_runtime.JSX.Element;
1025
+ declare function GlowSwitch({ className, ...props }: React$1.ComponentProps<typeof Switch>): react_jsx_runtime.JSX.Element;
1026
+
1027
+ /** Polymorphic "as" prop type for typography components */
1028
+ interface TypographyBaseProps {
1029
+ /** HTML element to render as */
1030
+ as?: React$1.ElementType;
1031
+ /** Additional CSS classes */
1032
+ className?: string;
1033
+ /** Content */
1034
+ children?: React$1.ReactNode;
1035
+ }
1036
+ declare function GradientText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
1037
+ interface GlitchTextProps {
1038
+ /** The text to display with glitch effect */
1039
+ text: string;
1040
+ /** HTML element to render as */
1041
+ as?: React$1.ElementType;
1042
+ /** Additional CSS classes */
1043
+ className?: string;
1044
+ }
1045
+ declare function GlitchText({ className, text, as: Component }: GlitchTextProps): react_jsx_runtime.JSX.Element;
1046
+ interface HighlightTextProps extends TypographyBaseProps {
1047
+ /** Background color class for the highlight */
1048
+ color?: string;
1049
+ }
1050
+ declare function HighlightText({ className, children, color, as: Component }: HighlightTextProps): react_jsx_runtime.JSX.Element;
1051
+ interface RevealTextProps {
1052
+ /** Text to reveal */
1053
+ text: string;
1054
+ /** Additional CSS classes */
1055
+ className?: string;
1056
+ /** Delay before animation starts (seconds) */
1057
+ delay?: number;
1058
+ }
1059
+ declare function RevealText({ text, className, delay }: RevealTextProps): react_jsx_runtime.JSX.Element;
1060
+ declare function OutlineText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
1061
+ declare function GlowText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
1062
+ interface NeonTextProps extends TypographyBaseProps {
1063
+ /** Color for the neon glow */
1064
+ color?: string;
1065
+ }
1066
+ declare function NeonText({ className, children, color, as: Component }: NeonTextProps): react_jsx_runtime.JSX.Element;
1067
+ declare function BlurText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
1068
+ declare function ShadowText({ className, children, as: Component }: TypographyBaseProps): react_jsx_runtime.JSX.Element;
1069
+
1070
+ interface BaseAnimationProps {
1071
+ children: React$1.ReactNode;
1072
+ delay?: number;
1073
+ duration?: number;
1074
+ }
1075
+ declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1076
+ declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1077
+ declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1078
+ declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1079
+ declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1080
+ declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1081
+ declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) => react_jsx_runtime.JSX.Element;
1082
+ declare const Flip: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1083
+ declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1084
+ declare const PulseAnim: ({ children }: {
1085
+ children: React$1.ReactNode;
1086
+ }) => react_jsx_runtime.JSX.Element;
1087
+ declare const Float: ({ children }: {
1088
+ children: React$1.ReactNode;
1089
+ }) => react_jsx_runtime.JSX.Element;
1090
+ declare const WiggleHover: ({ children }: {
1091
+ children: React$1.ReactNode;
1092
+ }) => react_jsx_runtime.JSX.Element;
1093
+ declare const Heartbeat: ({ children }: {
1094
+ children: React$1.ReactNode;
1095
+ }) => react_jsx_runtime.JSX.Element;
1096
+ declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
1097
+ declare const StaggerContainer: ({ children, delayChildren, staggerChildren }: {
1098
+ children: React$1.ReactNode;
1099
+ delayChildren?: number;
1100
+ staggerChildren?: number;
1101
+ }) => react_jsx_runtime.JSX.Element;
1102
+ declare const StaggerItem: ({ children }: {
1103
+ children: React$1.ReactNode;
1104
+ }) => react_jsx_runtime.JSX.Element;
1105
+
1106
+ declare const RadioCard: ({ title, description, checked, onChange, value, name }: any) => react_jsx_runtime.JSX.Element;
1107
+ declare const ColorSwatch: ({ color, selected, onClick }: any) => react_jsx_runtime.JSX.Element;
1108
+ declare const NumberStepper: ({ value, onChange, min, max }: any) => react_jsx_runtime.JSX.Element;
1109
+ declare const FileDropzone: ({ onDrop }: any) => react_jsx_runtime.JSX.Element;
1110
+ declare const RatingStars: ({ rating, max, onRate }: any) => react_jsx_runtime.JSX.Element;
1111
+ declare const ToggleGroupItemWrapper: ({ children, active, onClick }: any) => react_jsx_runtime.JSX.Element;
1112
+ declare const ToggleGroupWrapper: ({ children }: any) => react_jsx_runtime.JSX.Element;
1113
+ declare const InputWithLabelOverlay: ({ label, id, ...props }: any) => react_jsx_runtime.JSX.Element;
1114
+ declare const VisualSelectCard: ({ icon: Icon, title, description, selected }: any) => react_jsx_runtime.JSX.Element;
1115
+ declare const FloatingActionForm: ({ isOpen, toggle, children }: any) => react_jsx_runtime.JSX.Element;
1116
+ declare const OTPInput: ({ length }: any) => react_jsx_runtime.JSX.Element;
1117
+
1118
+ declare const HeroSection: ({ title, subtitle, ctaText }: any) => react_jsx_runtime.JSX.Element;
1119
+ declare const FeatureGrid: ({ features }: any) => react_jsx_runtime.JSX.Element;
1120
+ declare const SimpleFooter: ({ text }: any) => react_jsx_runtime.JSX.Element;
1121
+ declare const NewsletterBlock: () => react_jsx_runtime.JSX.Element;
1122
+ declare const TestimonialCard: ({ quote, author, role }: any) => react_jsx_runtime.JSX.Element;
1123
+ declare const FaqBlock: ({ faqs }: any) => react_jsx_runtime.JSX.Element;
1124
+ declare const CtaBlock: ({ title, buttonText }: any) => react_jsx_runtime.JSX.Element;
1125
+ declare const LogoCloud: ({ title, logos }: any) => react_jsx_runtime.JSX.Element;
1126
+ declare const PricingTableSimple: ({ plans }: any) => react_jsx_runtime.JSX.Element;
1127
+ declare const ContactFormBlock: () => react_jsx_runtime.JSX.Element;
1128
+
1129
+ declare const DataGridTable: ({ columns, data }: any) => react_jsx_runtime.JSX.Element;
1130
+ declare const KanbanBoard: ({ columns }: any) => react_jsx_runtime.JSX.Element;
1131
+ declare const PricingTableAdvanced: ({ plans }: any) => react_jsx_runtime.JSX.Element;
1132
+
1133
+ declare const NeonButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1134
+ declare const ThreeDButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1135
+ declare const RippleButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1136
+ declare const CyberpunkButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1137
+ declare const MagneticButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1138
+ declare const ShimmerButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1139
+ declare const BorderBeamButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1140
+ declare const LoadingButton: ({ isLoading, children, ...props }: any) => react_jsx_runtime.JSX.Element;
1141
+ declare const DestructiveGlowButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1142
+ declare const GhostOutlineButton: ({ children, ...props }: any) => react_jsx_runtime.JSX.Element;
1143
+
1144
+ declare const FloatingLabelInput: ({ label, ...props }: any) => react_jsx_runtime.JSX.Element;
1145
+ declare const UnderlineInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
1146
+ declare const IconInputLeft: ({ icon: Icon, ...props }: any) => react_jsx_runtime.JSX.Element;
1147
+ declare const IconInputRight: ({ icon: Icon, ...props }: any) => react_jsx_runtime.JSX.Element;
1148
+ declare const PillInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
1149
+ declare const ErrorInput: ({ errorMessage, ...props }: any) => react_jsx_runtime.JSX.Element;
1150
+ declare const SuccessInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
1151
+ declare const GhostInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
1152
+ declare const NeumorphicInput: ({ ...props }: any) => react_jsx_runtime.JSX.Element;
1153
+ declare const MinimalDropInput: ({ label, ...props }: any) => react_jsx_runtime.JSX.Element;
1154
+
1155
+ declare const ImageCard: ({ src, title, subtitle }: any) => react_jsx_runtime.JSX.Element;
1156
+ declare const ProfileCard: ({ name, role, avatar }: any) => react_jsx_runtime.JSX.Element;
1157
+ declare const ProductCard: ({ title, price, category, src }: any) => react_jsx_runtime.JSX.Element;
1158
+ declare const ArticleCard: ({ title, excerpt, date }: any) => react_jsx_runtime.JSX.Element;
1159
+ declare const StatCardSimple: ({ label, value, trend }: any) => react_jsx_runtime.JSX.Element;
1160
+ declare const PricingCardBasic: ({ name, price, features }: any) => react_jsx_runtime.JSX.Element;
1161
+ declare const WeatherCard: ({ city, temp, condition }: any) => react_jsx_runtime.JSX.Element;
1162
+ declare const EventCard: ({ title, date, location }: any) => react_jsx_runtime.JSX.Element;
1163
+ declare const TestimonialCardBasic: ({ text, author }: any) => react_jsx_runtime.JSX.Element;
1164
+ declare const InteractiveCard: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
1165
+
1166
+ declare const NotificationBadge: ({ count, children }: any) => react_jsx_runtime.JSX.Element;
1167
+ declare const RibbonBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
1168
+ declare const OutlineDotBadge: ({ text, colorClass }: any) => react_jsx_runtime.JSX.Element;
1169
+ declare const GradientOutlineBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
1170
+ declare const IconBadge: ({ icon: Icon, text }: any) => react_jsx_runtime.JSX.Element;
1171
+ declare const FloatingBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
1172
+ declare const ProgressBadge: ({ text, progress }: any) => react_jsx_runtime.JSX.Element;
1173
+ declare const StatusRingBadge: ({ status }: any) => react_jsx_runtime.JSX.Element;
1174
+ declare const NeonOutlineBadge: ({ text }: any) => react_jsx_runtime.JSX.Element;
1175
+ declare const TagLabel: ({ text }: any) => react_jsx_runtime.JSX.Element;
1176
+
1177
+ declare const WifiLoader: () => react_jsx_runtime.JSX.Element;
1178
+ declare const HourglassLoader: () => react_jsx_runtime.JSX.Element;
1179
+ declare const HeartbeatLoader: () => react_jsx_runtime.JSX.Element;
1180
+ declare const BoxLoader: () => react_jsx_runtime.JSX.Element;
1181
+ declare const BouncingBalls: () => react_jsx_runtime.JSX.Element;
1182
+ declare const GlowRingLoader: () => react_jsx_runtime.JSX.Element;
1183
+ declare const LineScaleLoader: () => react_jsx_runtime.JSX.Element;
1184
+ declare const ClockLoader: () => react_jsx_runtime.JSX.Element;
1185
+ declare const BatteryLoader: () => react_jsx_runtime.JSX.Element;
1186
+ declare const SquareSpinLoader: () => react_jsx_runtime.JSX.Element;
1187
+
1188
+ declare const CyberAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element | null;
1189
+ declare const SoftAlert: ({ title, description, type }: any) => react_jsx_runtime.JSX.Element | null;
1190
+ declare const MinimalAlert: ({ text }: any) => react_jsx_runtime.JSX.Element;
1191
+ declare const LeftBorderAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element | null;
1192
+ declare const IconTopAlert: ({ title, description, icon: Icon }: any) => react_jsx_runtime.JSX.Element;
1193
+ declare const SolidAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
1194
+ declare const ToastAlertWrapper: ({ title, description, time }: any) => react_jsx_runtime.JSX.Element;
1195
+ declare const BannerAlert: ({ text, actionText }: any) => react_jsx_runtime.JSX.Element;
1196
+ declare const CookieAlert: () => react_jsx_runtime.JSX.Element;
1197
+ declare const NeonAlert: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
1198
+
1199
+ declare const StackAvatar: ({ urls, max, fallback }: any) => react_jsx_runtime.JSX.Element;
1200
+ declare const DottedAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1201
+ declare const ShadowAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1202
+ declare const PolymorphAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1203
+ declare const GlassAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1204
+ declare const AnimatedBorderAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1205
+ declare const InitialsGradientAvatar: ({ initials }: any) => react_jsx_runtime.JSX.Element;
1206
+ declare const SquareAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1207
+ declare const TooltipAvatar: ({ src, fallback, tooltip }: any) => react_jsx_runtime.JSX.Element;
1208
+ declare const PulseAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
1209
+
1210
+ declare const SimpleNavbar: () => react_jsx_runtime.JSX.Element;
1211
+ declare const CenteredNavbar: () => react_jsx_runtime.JSX.Element;
1212
+ declare const GlassNavbar: () => react_jsx_runtime.JSX.Element;
1213
+ declare const FloatingNavbar: () => react_jsx_runtime.JSX.Element;
1214
+ declare const SidebarMenu: () => react_jsx_runtime.JSX.Element;
1215
+ declare const BottomNav: () => react_jsx_runtime.JSX.Element;
1216
+ declare const BreadcrumbTrail: () => react_jsx_runtime.JSX.Element;
1217
+ declare const StepIndicator: ({ current }: any) => react_jsx_runtime.JSX.Element;
1218
+ declare const TabMenu: () => react_jsx_runtime.JSX.Element;
1219
+ declare const DropdownMenuVisual: () => react_jsx_runtime.JSX.Element;
1220
+
1221
+ declare const CircularProgressCard: ({ value, label }: any) => react_jsx_runtime.JSX.Element;
1222
+ declare const LineChartCard: () => react_jsx_runtime.JSX.Element;
1223
+ declare const BarChartCard: () => react_jsx_runtime.JSX.Element;
1224
+ declare const TrendStatCard: ({ title, value, trend }: any) => react_jsx_runtime.JSX.Element;
1225
+ declare const RankingList: () => react_jsx_runtime.JSX.Element;
1226
+ declare const ActivityHeatmap: () => react_jsx_runtime.JSX.Element;
1227
+ declare const RadarChartMock: () => react_jsx_runtime.JSX.Element;
1228
+ declare const GaugeMeter: ({ value }: any) => react_jsx_runtime.JSX.Element;
1229
+ declare const SparklineStat: () => react_jsx_runtime.JSX.Element;
1230
+ declare const MetricGrid: () => react_jsx_runtime.JSX.Element;
1231
+
1232
+ declare const FeatureGridX: () => react_jsx_runtime.JSX.Element;
1233
+ declare const HeroSectionX: () => react_jsx_runtime.JSX.Element;
1234
+ declare const FaqAccordionX: () => react_jsx_runtime.JSX.Element;
1235
+ declare const TeamSectionX: () => react_jsx_runtime.JSX.Element;
1236
+ declare const LogoCloudX: () => react_jsx_runtime.JSX.Element;
1237
+ declare const CTASectionX: () => react_jsx_runtime.JSX.Element;
1238
+ declare const ContactFormX: () => react_jsx_runtime.JSX.Element;
1239
+ declare const PricingCardsX: () => react_jsx_runtime.JSX.Element;
1240
+ declare const TestimonialSliderX: () => react_jsx_runtime.JSX.Element;
1241
+ declare const FooterX: () => react_jsx_runtime.JSX.Element;
1242
+
1243
+ declare const LoginFormPro: () => react_jsx_runtime.JSX.Element;
1244
+ declare const RegisterFormPro: () => react_jsx_runtime.JSX.Element;
1245
+ declare const PaymentFormPro: () => react_jsx_runtime.JSX.Element;
1246
+ declare const ProfileSettingsForm: () => react_jsx_runtime.JSX.Element;
1247
+ declare const SubscriptionForm: () => react_jsx_runtime.JSX.Element;
1248
+ declare const ContactFormPro: () => react_jsx_runtime.JSX.Element;
1249
+ declare const AdvancedSearchForm: () => react_jsx_runtime.JSX.Element;
1250
+ declare const FileUploadForm: () => react_jsx_runtime.JSX.Element;
1251
+ declare const FeedbackForm: () => react_jsx_runtime.JSX.Element;
1252
+ declare const InviteUsersForm: () => react_jsx_runtime.JSX.Element;
1253
+
1254
+ declare const ProductGallery: () => react_jsx_runtime.JSX.Element;
1255
+ declare const AddToCartBar: () => react_jsx_runtime.JSX.Element;
1256
+ declare const CartDrawerItem: () => react_jsx_runtime.JSX.Element | null;
1257
+ declare const OrderSummaryCard: () => react_jsx_runtime.JSX.Element;
1258
+ declare const PromoCodeInput: () => react_jsx_runtime.JSX.Element;
1259
+ declare const ShippingAddressForm: () => react_jsx_runtime.JSX.Element;
1260
+ declare const ProductReview: () => react_jsx_runtime.JSX.Element;
1261
+ declare const ColorSelector: () => react_jsx_runtime.JSX.Element;
1262
+ declare const SizeSelector: () => react_jsx_runtime.JSX.Element;
1263
+ declare const CategoryCard: () => react_jsx_runtime.JSX.Element;
1264
+
1265
+ declare const ChatBubbleUser: ({ message }: any) => react_jsx_runtime.JSX.Element;
1266
+ declare const ChatBubbleAI: ({ message }: any) => react_jsx_runtime.JSX.Element;
1267
+ declare const AIPromptInput: () => react_jsx_runtime.JSX.Element;
1268
+ declare const ThinkingLoader: () => react_jsx_runtime.JSX.Element;
1269
+ declare const ModelSelector: () => react_jsx_runtime.JSX.Element;
1270
+ declare const GeneratedCodeBlock: () => react_jsx_runtime.JSX.Element;
1271
+ declare const ChatHistorySidebar: () => react_jsx_runtime.JSX.Element;
1272
+ declare const AIFeatureCard: () => react_jsx_runtime.JSX.Element;
1273
+ declare const SuggestionChips: () => react_jsx_runtime.JSX.Element;
1274
+ declare const VoiceInputPulse: () => react_jsx_runtime.JSX.Element;
1275
+
1276
+ declare const DataTablePro: () => react_jsx_runtime.JSX.Element;
1277
+ declare const InvoiceTable: () => react_jsx_runtime.JSX.Element;
1278
+ declare const UserDirectoryTable: () => react_jsx_runtime.JSX.Element;
1279
+ declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
1280
+ declare const FileExplorerTable: () => react_jsx_runtime.JSX.Element;
1281
+ declare const LeaderboardTable: () => react_jsx_runtime.JSX.Element;
1282
+ declare const ProductInventoryTable: () => react_jsx_runtime.JSX.Element;
1283
+ declare const ScheduleTable: () => react_jsx_runtime.JSX.Element;
1284
+ declare const PricingComparisonTable: () => react_jsx_runtime.JSX.Element;
1285
+ declare const CompactDataList: () => react_jsx_runtime.JSX.Element;
1286
+
1287
+ declare const DashboardShell: ({ children }: any) => react_jsx_runtime.JSX.Element;
1288
+ declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => react_jsx_runtime.JSX.Element;
1289
+ declare const ActivityFeed: () => react_jsx_runtime.JSX.Element;
1290
+ declare const ProgressWidget: () => react_jsx_runtime.JSX.Element;
1291
+ declare const QuickActionsWidget: () => react_jsx_runtime.JSX.Element;
1292
+ declare const TaskChecklist: () => react_jsx_runtime.JSX.Element;
1293
+ declare const StorageWidget: () => react_jsx_runtime.JSX.Element;
1294
+ declare const RevenueChartWidget: () => react_jsx_runtime.JSX.Element;
1295
+ declare const RecentUsersWidget: () => react_jsx_runtime.JSX.Element;
1296
+ declare const ServerStatusWidget: () => react_jsx_runtime.JSX.Element;
1297
+
1298
+ declare const MegaMenuVisual: () => react_jsx_runtime.JSX.Element;
1299
+ declare const CommandPaletteVisual: () => react_jsx_runtime.JSX.Element;
1300
+ declare const AppTopbar: () => react_jsx_runtime.JSX.Element;
1301
+ declare const MobileDrawerNav: () => react_jsx_runtime.JSX.Element;
1302
+ declare const TreeNavigation: () => react_jsx_runtime.JSX.Element;
1303
+ declare const ContextActionBar: () => react_jsx_runtime.JSX.Element;
1304
+ declare const PaginationPro: () => react_jsx_runtime.JSX.Element;
1305
+ declare const FilterBar: () => react_jsx_runtime.JSX.Element;
1306
+ declare const LanguageSelector: () => react_jsx_runtime.JSX.Element;
1307
+ declare const UserMenuDropdown: () => react_jsx_runtime.JSX.Element;
1308
+
1309
+ declare const ConfettiSuccess: () => react_jsx_runtime.JSX.Element;
1310
+ declare const ActionToast: () => react_jsx_runtime.JSX.Element;
1311
+ declare const MultiStepProgress: ({ current }: any) => react_jsx_runtime.JSX.Element;
1312
+ declare const SkeletonList: () => react_jsx_runtime.JSX.Element;
1313
+ declare const EmptyStatePro: () => react_jsx_runtime.JSX.Element;
1314
+ declare const TooltipForm: () => react_jsx_runtime.JSX.Element;
1315
+ declare const OfflineBanner: () => react_jsx_runtime.JSX.Element;
1316
+ declare const RateLimitAlert: () => react_jsx_runtime.JSX.Element;
1317
+ declare const PasswordStrengthMeter: ({ score }: any) => react_jsx_runtime.JSX.Element;
1318
+ declare const UploadProgress: () => react_jsx_runtime.JSX.Element;
1319
+
1320
+ declare const WaitlistForm: () => react_jsx_runtime.JSX.Element;
1321
+ declare const PricingToggle: () => react_jsx_runtime.JSX.Element;
1322
+ declare const FeatureShowcase: () => react_jsx_runtime.JSX.Element;
1323
+ declare const TrustBanner: () => react_jsx_runtime.JSX.Element;
1324
+ declare const ComparisonTableMock: () => react_jsx_runtime.JSX.Element;
1325
+ declare const AnimatedHeroText: () => react_jsx_runtime.JSX.Element;
1326
+ declare const StatCounter: () => react_jsx_runtime.JSX.Element;
1327
+ declare const NewsletterSignup: () => react_jsx_runtime.JSX.Element;
1328
+ declare const VideoModalVisual: () => react_jsx_runtime.JSX.Element;
1329
+ declare const GradientCTABlock: () => react_jsx_runtime.JSX.Element;
1330
+
1331
+ declare const ContactList: () => react_jsx_runtime.JSX.Element;
1332
+ declare const NotificationList: () => react_jsx_runtime.JSX.Element;
1333
+ declare const TimelineVertical: () => react_jsx_runtime.JSX.Element;
1334
+ declare const StepList: () => react_jsx_runtime.JSX.Element;
1335
+ declare const FAQAccordionList: () => react_jsx_runtime.JSX.Element;
1336
+ declare const FileDownloadList: () => react_jsx_runtime.JSX.Element;
1337
+ declare const MessageList: () => react_jsx_runtime.JSX.Element;
1338
+ declare const JobBoardList: () => react_jsx_runtime.JSX.Element;
1339
+ declare const EventScheduleList: () => react_jsx_runtime.JSX.Element;
1340
+ declare const RecentCommentsList: () => react_jsx_runtime.JSX.Element;
1341
+
1342
+ declare const SplitScreenLayout: () => react_jsx_runtime.JSX.Element;
1343
+ declare const AuthenticationLayout: () => react_jsx_runtime.JSX.Element;
1344
+ declare const SidebarLayout: () => react_jsx_runtime.JSX.Element;
1345
+ declare const DashboardGridLayout: () => react_jsx_runtime.JSX.Element;
1346
+ declare const BentoGridVisual: () => react_jsx_runtime.JSX.Element;
1347
+ declare const KanbanBoardVisual: () => react_jsx_runtime.JSX.Element;
1348
+ declare const ChatLayoutVisual: () => react_jsx_runtime.JSX.Element;
1349
+ declare const FeedLayout: () => react_jsx_runtime.JSX.Element;
1350
+ declare const DocumentationLayout: () => react_jsx_runtime.JSX.Element;
1351
+ declare const HeaderFooterLayout: () => react_jsx_runtime.JSX.Element;
1352
+
1353
+ declare const SimpleAccordion: () => react_jsx_runtime.JSX.Element;
1354
+ declare const PlusAccordion: () => react_jsx_runtime.JSX.Element;
1355
+ declare const NeonAccordion: () => react_jsx_runtime.JSX.Element;
1356
+ declare const BasicModal: () => react_jsx_runtime.JSX.Element;
1357
+ declare const InteractiveGlassModal: () => react_jsx_runtime.JSX.Element;
1358
+ declare const DangerModal: () => react_jsx_runtime.JSX.Element;
1359
+ declare const SimpleCheckbox: () => react_jsx_runtime.JSX.Element;
1360
+ declare const InteractiveCardCheckbox: ({ title, description, checked: externalChecked, onCheckedChange, ...props }: any) => react_jsx_runtime.JSX.Element;
1361
+ declare const SimpleSwitch: () => react_jsx_runtime.JSX.Element;
1362
+ declare const NeonSwitch: () => react_jsx_runtime.JSX.Element;
1363
+ declare const SimpleSelect: () => react_jsx_runtime.JSX.Element;
1364
+ interface SimpleTooltipProps {
1365
+ content: React$1.ReactNode;
1366
+ position?: "top" | "bottom" | "left" | "right";
1367
+ children?: React$1.ReactNode;
1368
+ }
1369
+ declare const SimpleTooltip: ({ content, position, children }: SimpleTooltipProps) => react_jsx_runtime.JSX.Element;
1370
+ interface RichTooltipProps {
1371
+ content: React$1.ReactNode;
1372
+ children?: React$1.ReactNode;
1373
+ }
1374
+ declare const RichTooltip: ({ content, children }: RichTooltipProps) => react_jsx_runtime.JSX.Element;
1375
+
1376
+ interface SpecialPremiumCardProps {
1377
+ title: string;
1378
+ description: string;
1379
+ icon?: LucideIcon;
1380
+ gradient?: string;
1381
+ className?: string;
1382
+ children?: React__default.ReactNode;
1383
+ }
1384
+ declare const SpecialPremiumCard: ({ title, description, icon: Icon, gradient, className, children }: SpecialPremiumCardProps) => react_jsx_runtime.JSX.Element;
1385
+
1386
+ interface MarqueeProps {
1387
+ children: React$1.ReactNode;
1388
+ speed?: number;
1389
+ direction?: "left" | "right";
1390
+ pauseOnHover?: boolean;
1391
+ className?: string;
1392
+ }
1393
+ declare function Marquee({ children, speed, direction, pauseOnHover, className, }: MarqueeProps): react_jsx_runtime.JSX.Element;
1394
+ interface NumberTickerProps {
1395
+ value: number;
1396
+ direction?: "up" | "down";
1397
+ delay?: number;
1398
+ className?: string;
1399
+ decimalPlaces?: number;
1400
+ }
1401
+ declare function NumberTicker({ value, direction, delay, className, decimalPlaces, }: NumberTickerProps): react_jsx_runtime.JSX.Element;
1402
+ interface TypingAnimationProps {
1403
+ text: string;
1404
+ duration?: number;
1405
+ className?: string;
1406
+ cursor?: boolean;
1407
+ }
1408
+ declare function TypingAnimation({ text, duration, className, cursor, }: TypingAnimationProps): react_jsx_runtime.JSX.Element;
1409
+ interface SpotlightCardProps {
1410
+ children: React$1.ReactNode;
1411
+ className?: string;
1412
+ spotlightColor?: string;
1413
+ }
1414
+ declare function SpotlightCard({ children, className, spotlightColor, }: SpotlightCardProps): react_jsx_runtime.JSX.Element;
1415
+ interface AnimatedGradientBorderProps {
1416
+ children: React$1.ReactNode;
1417
+ className?: string;
1418
+ containerClassName?: string;
1419
+ gradientClassName?: string;
1420
+ duration?: number;
1421
+ }
1422
+ declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps): react_jsx_runtime.JSX.Element;
1423
+ interface DockProps {
1424
+ items: {
1425
+ icon: React$1.ReactNode;
1426
+ label: string;
1427
+ onClick?: () => void;
1428
+ }[];
1429
+ className?: string;
1430
+ magnification?: number;
1431
+ distance?: number;
1432
+ }
1433
+ declare function Dock({ items, className, magnification, distance, }: DockProps): react_jsx_runtime.JSX.Element;
1434
+ interface AnimatedBeamProps {
1435
+ className?: string;
1436
+ children: React$1.ReactNode;
1437
+ }
1438
+ declare function AnimatedBeam({ className, children }: AnimatedBeamProps): react_jsx_runtime.JSX.Element;
1439
+ interface ShinyTextProps {
1440
+ children: React$1.ReactNode;
1441
+ className?: string;
1442
+ shimmerWidth?: number;
1443
+ }
1444
+ declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): react_jsx_runtime.JSX.Element;
1445
+ interface RetroGridProps {
1446
+ className?: string;
1447
+ angle?: number;
1448
+ }
1449
+ declare function RetroGrid({ className, angle }: RetroGridProps): react_jsx_runtime.JSX.Element;
1450
+ interface MeteorsProps {
1451
+ number?: number;
1452
+ className?: string;
1453
+ }
1454
+ declare function Meteors({ number, className }: MeteorsProps): react_jsx_runtime.JSX.Element;
1455
+
1456
+ interface MorphingTextProps {
1457
+ texts: string[];
1458
+ className?: string;
1459
+ interval?: number;
1460
+ }
1461
+ declare function MorphingText({ texts, className, interval, }: MorphingTextProps): react_jsx_runtime.JSX.Element;
1462
+ interface AnimatedListProps {
1463
+ children: React$1.ReactNode;
1464
+ className?: string;
1465
+ delay?: number;
1466
+ }
1467
+ declare function AnimatedList({ children, className, delay, }: AnimatedListProps): react_jsx_runtime.JSX.Element;
1468
+ interface BlurFadeProps {
1469
+ children: React$1.ReactNode;
1470
+ className?: string;
1471
+ delay?: number;
1472
+ yOffset?: number;
1473
+ duration?: number;
1474
+ inView?: boolean;
1475
+ }
1476
+ declare function BlurFade({ children, className, delay, yOffset, duration, inView, }: BlurFadeProps): react_jsx_runtime.JSX.Element;
1477
+ interface InteractiveHoverButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1478
+ text?: string;
1479
+ className?: string;
1480
+ }
1481
+ declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): react_jsx_runtime.JSX.Element;
1482
+ interface PulsatingButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1483
+ pulseColor?: string;
1484
+ duration?: string;
1485
+ className?: string;
1486
+ }
1487
+ declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): react_jsx_runtime.JSX.Element;
1488
+ interface RainbowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1489
+ className?: string;
1490
+ }
1491
+ declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): react_jsx_runtime.JSX.Element;
1492
+ interface CoolModeProps {
1493
+ children: React$1.ReactElement;
1494
+ className?: string;
1495
+ }
1496
+ declare function CoolMode({ children, className }: CoolModeProps): react_jsx_runtime.JSX.Element;
1497
+ interface WordPullUpProps {
1498
+ words: string;
1499
+ className?: string;
1500
+ delayMultiple?: number;
1501
+ }
1502
+ declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): react_jsx_runtime.JSX.Element;
1503
+ interface BoxRevealProps {
1504
+ children: React$1.ReactNode;
1505
+ className?: string;
1506
+ boxColor?: string;
1507
+ duration?: number;
1508
+ delay?: number;
1509
+ }
1510
+ declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): react_jsx_runtime.JSX.Element;
1511
+ interface TextShimmerProps {
1512
+ children: React$1.ReactNode;
1513
+ className?: string;
1514
+ duration?: number;
1515
+ spread?: number;
1516
+ }
1517
+ declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): react_jsx_runtime.JSX.Element;
1518
+
1519
+ declare function NeonGlowButton({ children, className, color, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1520
+ color?: string;
1521
+ }): react_jsx_runtime.JSX.Element;
1522
+ declare function OutlineGradientButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1523
+ declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1524
+ declare function SplitButton({ primary, secondary, onPrimary, onSecondary, className }: {
1525
+ primary: string;
1526
+ secondary: string;
1527
+ onPrimary?: () => void;
1528
+ onSecondary?: () => void;
1529
+ className?: string;
1530
+ }): react_jsx_runtime.JSX.Element;
1531
+ declare function CopyTextButton({ text, className }: {
1532
+ text: string;
1533
+ className?: string;
1534
+ }): react_jsx_runtime.JSX.Element;
1535
+ declare function ExpandButton({ children, icon, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1536
+ icon: React$1.ReactNode;
1537
+ }): react_jsx_runtime.JSX.Element;
1538
+ declare function StatusButton({ status, children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1539
+ status?: "idle" | "loading" | "success" | "error";
1540
+ }): react_jsx_runtime.JSX.Element;
1541
+ declare function GlassmorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1542
+ declare function SegmentedButton({ options, value, onChange, className }: {
1543
+ options: string[];
1544
+ value: string;
1545
+ onChange: (val: string) => void;
1546
+ className?: string;
1547
+ }): react_jsx_runtime.JSX.Element;
1548
+ declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1549
+
1550
+ declare function NeumorphicCard({ children, className }: {
1551
+ children: React$1.ReactNode;
1552
+ className?: string;
1553
+ }): react_jsx_runtime.JSX.Element;
1554
+ declare function GradientMeshCard({ children, className }: {
1555
+ children: React$1.ReactNode;
1556
+ className?: string;
1557
+ }): react_jsx_runtime.JSX.Element;
1558
+ declare function TiltCard({ children, className }: {
1559
+ children: React$1.ReactNode;
1560
+ className?: string;
1561
+ }): react_jsx_runtime.JSX.Element;
1562
+ declare function FeatureCard({ icon, title, description, className }: {
1563
+ icon: React$1.ReactNode;
1564
+ title: string;
1565
+ description: string;
1566
+ className?: string;
1567
+ }): react_jsx_runtime.JSX.Element;
1568
+ declare function PricingCardPro({ name, price, period, features, popular, className, ctaText }: {
1569
+ name: string;
1570
+ price: string;
1571
+ period?: string;
1572
+ features: string[];
1573
+ popular?: boolean;
1574
+ className?: string;
1575
+ ctaText?: string;
1576
+ }): react_jsx_runtime.JSX.Element;
1577
+ declare function TestimonialCardV2({ quote, author, role, avatar, className }: {
1578
+ quote: string;
1579
+ author: string;
1580
+ role: string;
1581
+ avatar?: string;
1582
+ className?: string;
1583
+ }): react_jsx_runtime.JSX.Element;
1584
+ declare function MetricCard({ title, value, change, changeType, className }: {
1585
+ title: string;
1586
+ value: string;
1587
+ change: string;
1588
+ changeType?: "positive" | "negative" | "neutral";
1589
+ className?: string;
1590
+ }): react_jsx_runtime.JSX.Element;
1591
+ declare function ImageOverlayCard({ title, subtitle, gradient, className }: {
1592
+ title: string;
1593
+ subtitle: string;
1594
+ gradient?: string;
1595
+ className?: string;
1596
+ }): react_jsx_runtime.JSX.Element;
1597
+ declare function ProfileCardFull({ name, role, bio, stats, className }: {
1598
+ name: string;
1599
+ role: string;
1600
+ bio?: string;
1601
+ stats?: {
1602
+ label: string;
1603
+ value: string;
1604
+ }[];
1605
+ className?: string;
1606
+ }): react_jsx_runtime.JSX.Element;
1607
+ declare function NotificationCard({ title, message, time, type, className }: {
1608
+ title: string;
1609
+ message: string;
1610
+ time: string;
1611
+ type?: "info" | "success" | "warning" | "error";
1612
+ className?: string;
1613
+ }): react_jsx_runtime.JSX.Element;
1614
+
1615
+ declare function GradientFocusInput({ className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
1616
+ declare function AnimatedLabelInput({ label, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
1617
+ label: string;
1618
+ }): react_jsx_runtime.JSX.Element;
1619
+ declare function OTPCodeInput({ length, className, onChange }: {
1620
+ length?: number;
1621
+ className?: string;
1622
+ onChange?: (val: string) => void;
1623
+ }): react_jsx_runtime.JSX.Element;
1624
+ declare function TagInput({ placeholder, className }: {
1625
+ placeholder?: string;
1626
+ className?: string;
1627
+ }): react_jsx_runtime.JSX.Element;
1628
+ declare function SearchCommandInput({ className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement>): react_jsx_runtime.JSX.Element;
1629
+ declare function CurrencyInput({ currency, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
1630
+ currency?: string;
1631
+ }): react_jsx_runtime.JSX.Element;
1632
+ declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): react_jsx_runtime.JSX.Element;
1633
+ declare function RangeSliderInput({ min, max, value: initialValue, label, className }: {
1634
+ min?: number;
1635
+ max?: number;
1636
+ value?: number;
1637
+ label?: string;
1638
+ className?: string;
1639
+ }): react_jsx_runtime.JSX.Element;
1640
+ declare function ColorPickerInput({ value: initial, label, className, onChange }: {
1641
+ value?: string;
1642
+ label?: string;
1643
+ className?: string;
1644
+ onChange?: (color: string) => void;
1645
+ }): react_jsx_runtime.JSX.Element;
1646
+ declare function ToggleInput({ label, className }: {
1647
+ label: string;
1648
+ className?: string;
1649
+ }): react_jsx_runtime.JSX.Element;
1650
+
1651
+ interface ScrollAreaProps extends React$1.HTMLAttributes<HTMLDivElement> {
1652
+ /** Maximum height before scrolling */
1653
+ maxHeight?: string | number;
1654
+ /** Orientation of the scroll */
1655
+ orientation?: "vertical" | "horizontal" | "both";
1656
+ }
1657
+ declare function ScrollArea({ children, className, maxHeight, orientation, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
1658
+ interface DrawerProps {
1659
+ /** Whether the drawer is open */
1660
+ open: boolean;
1661
+ /** Callback when drawer should close */
1662
+ onClose: () => void;
1663
+ /** Direction the drawer slides from */
1664
+ side?: "bottom" | "right" | "left";
1665
+ /** Drawer content */
1666
+ children: React$1.ReactNode;
1667
+ /** Additional CSS classes for the drawer panel */
1668
+ className?: string;
1669
+ /** Title for the drawer header */
1670
+ title?: string;
1671
+ }
1672
+ declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): react_jsx_runtime.JSX.Element;
1673
+ interface CommandPaletteItem {
1674
+ /** Unique identifier */
1675
+ id: string;
1676
+ /** Display label */
1677
+ label: string;
1678
+ /** Optional icon */
1679
+ icon?: React$1.ReactNode;
1680
+ /** Optional group/category */
1681
+ group?: string;
1682
+ /** Action when selected */
1683
+ onSelect?: () => void;
1684
+ }
1685
+ interface CommandPaletteProps {
1686
+ /** Whether the palette is open */
1687
+ open: boolean;
1688
+ /** Callback when palette should close */
1689
+ onClose: () => void;
1690
+ /** Items to display */
1691
+ items: CommandPaletteItem[];
1692
+ /** Placeholder text */
1693
+ placeholder?: string;
1694
+ /** Additional CSS classes */
1695
+ className?: string;
1696
+ }
1697
+ declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element;
1698
+ interface ContextMenuItem {
1699
+ /** Display label */
1700
+ label: string;
1701
+ /** Action when clicked */
1702
+ onClick?: () => void;
1703
+ /** Keyboard shortcut hint */
1704
+ shortcut?: string;
1705
+ /** Whether this is a separator */
1706
+ separator?: boolean;
1707
+ /** Whether the item is disabled */
1708
+ disabled?: boolean;
1709
+ /** Whether this is a destructive action */
1710
+ destructive?: boolean;
1711
+ }
1712
+ interface ContextMenuProps {
1713
+ /** Items in the context menu */
1714
+ items: ContextMenuItem[];
1715
+ /** Content to right-click on */
1716
+ children: React$1.ReactNode;
1717
+ /** Additional CSS classes */
1718
+ className?: string;
1719
+ }
1720
+ declare function ContextMenu({ items, children, className }: ContextMenuProps): react_jsx_runtime.JSX.Element;
1721
+
1722
+ declare function ImageCarousel({ images, autoPlay, interval, className }: {
1723
+ images: {
1724
+ src: string;
1725
+ alt?: string;
1726
+ }[];
1727
+ autoPlay?: boolean;
1728
+ interval?: number;
1729
+ className?: string;
1730
+ }): react_jsx_runtime.JSX.Element;
1731
+ declare function VideoPlayer({ title, duration, thumbnail, className }: {
1732
+ title?: string;
1733
+ duration?: string;
1734
+ thumbnail?: string;
1735
+ className?: string;
1736
+ }): react_jsx_runtime.JSX.Element;
1737
+ declare function AudioWaveform({ playing, bars, className }: {
1738
+ playing?: boolean;
1739
+ bars?: number;
1740
+ className?: string;
1741
+ }): react_jsx_runtime.JSX.Element;
1742
+ declare function FilePreviewCard({ name, size, type, className }: {
1743
+ name: string;
1744
+ size: string;
1745
+ type?: "file" | "image" | "video" | "pdf" | "code";
1746
+ className?: string;
1747
+ }): react_jsx_runtime.JSX.Element;
1748
+ declare function EmbedCard({ title, description, domain, favicon, className }: {
1749
+ title: string;
1750
+ description?: string;
1751
+ domain: string;
1752
+ favicon?: string;
1753
+ className?: string;
1754
+ }): react_jsx_runtime.JSX.Element;
1755
+ declare function MusicPlayer({ title, artist, album, className }: {
1756
+ title: string;
1757
+ artist: string;
1758
+ album?: string;
1759
+ className?: string;
1760
+ }): react_jsx_runtime.JSX.Element;
1761
+ declare function ImageCompare({ leftLabel, rightLabel, className }: {
1762
+ leftLabel?: string;
1763
+ rightLabel?: string;
1764
+ className?: string;
1765
+ }): react_jsx_runtime.JSX.Element;
1766
+ declare function GalleryGrid({ items, className }: {
1767
+ items: {
1768
+ title: string;
1769
+ color?: string;
1770
+ }[];
1771
+ className?: string;
1772
+ }): react_jsx_runtime.JSX.Element;
1773
+ declare function CodeSnippet({ code, language, filename, className }: {
1774
+ code: string;
1775
+ language?: string;
1776
+ filename?: string;
1777
+ className?: string;
1778
+ }): react_jsx_runtime.JSX.Element;
1779
+ declare function TestimonialCarousel({ testimonials, className }: {
1780
+ testimonials: {
1781
+ quote: string;
1782
+ author: string;
1783
+ role: string;
1784
+ }[];
1785
+ className?: string;
1786
+ }): react_jsx_runtime.JSX.Element;
1787
+
1788
+ declare function DonutChart({ value, max, size, strokeWidth, color, label, className }: {
1789
+ value: number;
1790
+ max?: number;
1791
+ size?: number;
1792
+ strokeWidth?: number;
1793
+ color?: string;
1794
+ label?: string;
1795
+ className?: string;
1796
+ }): react_jsx_runtime.JSX.Element;
1797
+ declare function BarChartSimple({ data, height, className }: {
1798
+ data: {
1799
+ label: string;
1800
+ value: number;
1801
+ color?: string;
1802
+ }[];
1803
+ height?: number;
1804
+ className?: string;
1805
+ }): react_jsx_runtime.JSX.Element;
1806
+ declare function AreaChartSimple({ data, height, color, className }: {
1807
+ data: number[];
1808
+ height?: number;
1809
+ color?: string;
1810
+ className?: string;
1811
+ }): react_jsx_runtime.JSX.Element;
1812
+ declare function StatWidget({ title, value, change, changeType, data, className }: {
1813
+ title: string;
1814
+ value: string;
1815
+ change?: string;
1816
+ changeType?: "positive" | "negative";
1817
+ data?: number[];
1818
+ className?: string;
1819
+ }): react_jsx_runtime.JSX.Element;
1820
+ declare function ProgressCircle({ value, size, label, className }: {
1821
+ value: number;
1822
+ size?: number;
1823
+ label?: string;
1824
+ className?: string;
1825
+ }): react_jsx_runtime.JSX.Element;
1826
+ declare function ComparisonBar({ label1, label2, value1, value2, className }: {
1827
+ label1: string;
1828
+ label2: string;
1829
+ value1: number;
1830
+ value2: number;
1831
+ className?: string;
1832
+ }): react_jsx_runtime.JSX.Element;
1833
+ declare function HeatmapGrid({ data, columns, className }: {
1834
+ data: number[];
1835
+ columns?: number;
1836
+ className?: string;
1837
+ }): react_jsx_runtime.JSX.Element;
1838
+ declare function LeaderboardWidget({ items, title, className }: {
1839
+ items: {
1840
+ name: string;
1841
+ score: number;
1842
+ avatar?: string;
1843
+ }[];
1844
+ title?: string;
1845
+ className?: string;
1846
+ }): react_jsx_runtime.JSX.Element;
1847
+ declare function FunnelChart({ steps, className }: {
1848
+ steps: {
1849
+ label: string;
1850
+ value: number;
1851
+ color?: string;
1852
+ }[];
1853
+ className?: string;
1854
+ }): react_jsx_runtime.JSX.Element;
1855
+ declare function KPIDashboard({ metrics, className }: {
1856
+ metrics: {
1857
+ label: string;
1858
+ value: string;
1859
+ icon?: React$1.ReactNode;
1860
+ trend?: string;
1861
+ trendType?: "up" | "down";
1862
+ }[];
1863
+ className?: string;
1864
+ }): react_jsx_runtime.JSX.Element;
1865
+
1866
+ declare function ChatMessage({ message, sender, time, avatar, isOwn, className }: {
1867
+ message: string;
1868
+ sender: string;
1869
+ time?: string;
1870
+ avatar?: string;
1871
+ isOwn?: boolean;
1872
+ className?: string;
1873
+ }): react_jsx_runtime.JSX.Element;
1874
+ declare function ChatInput({ placeholder, onSend, className }: {
1875
+ placeholder?: string;
1876
+ onSend?: (message: string) => void;
1877
+ className?: string;
1878
+ }): react_jsx_runtime.JSX.Element;
1879
+ declare function UserProfileCard({ name, username, bio, stats, isFollowing, className }: {
1880
+ name: string;
1881
+ username: string;
1882
+ bio?: string;
1883
+ stats?: {
1884
+ label: string;
1885
+ value: string;
1886
+ }[];
1887
+ isFollowing?: boolean;
1888
+ className?: string;
1889
+ }): react_jsx_runtime.JSX.Element;
1890
+ declare function CommentThread({ comments, className }: {
1891
+ comments: {
1892
+ author: string;
1893
+ text: string;
1894
+ time: string;
1895
+ replies?: {
1896
+ author: string;
1897
+ text: string;
1898
+ time: string;
1899
+ }[];
1900
+ }[];
1901
+ className?: string;
1902
+ }): react_jsx_runtime.JSX.Element;
1903
+ declare function ReactionBar({ reactions, onReact, className }: {
1904
+ reactions: {
1905
+ emoji: string;
1906
+ count: number;
1907
+ active?: boolean;
1908
+ }[];
1909
+ onReact?: (emoji: string) => void;
1910
+ className?: string;
1911
+ }): react_jsx_runtime.JSX.Element;
1912
+ declare function ActivityItem({ user, action, target, time, icon, className }: {
1913
+ user: string;
1914
+ action: string;
1915
+ target?: string;
1916
+ time: string;
1917
+ icon?: React$1.ReactNode;
1918
+ className?: string;
1919
+ }): react_jsx_runtime.JSX.Element;
1920
+ declare function SocialPost({ author, handle, content, time, likes, comments, shares, className }: {
1921
+ author: string;
1922
+ handle: string;
1923
+ content: string;
1924
+ time: string;
1925
+ likes?: number;
1926
+ comments?: number;
1927
+ shares?: number;
1928
+ className?: string;
1929
+ }): react_jsx_runtime.JSX.Element;
1930
+ declare function OnlineUsersList({ users, className }: {
1931
+ users: {
1932
+ name: string;
1933
+ status?: "online" | "away" | "busy" | "offline";
1934
+ }[];
1935
+ className?: string;
1936
+ }): react_jsx_runtime.JSX.Element;
1937
+ declare function ShareSheet({ url, title, className }: {
1938
+ url?: string;
1939
+ title?: string;
1940
+ className?: string;
1941
+ }): react_jsx_runtime.JSX.Element;
1942
+ declare function NotificationCenter({ notifications, className }: {
1943
+ notifications: {
1944
+ title: string;
1945
+ message: string;
1946
+ time: string;
1947
+ read?: boolean;
1948
+ type?: "info" | "success" | "warning";
1949
+ }[];
1950
+ className?: string;
1951
+ }): react_jsx_runtime.JSX.Element;
1952
+
1953
+ declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, className }: {
1954
+ name: string;
1955
+ price: string;
1956
+ originalPrice?: string;
1957
+ badge?: string;
1958
+ rating?: number;
1959
+ reviewCount?: number;
1960
+ className?: string;
1961
+ }): react_jsx_runtime.JSX.Element;
1962
+ declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className }: {
1963
+ name: string;
1964
+ price: string;
1965
+ quantity?: number;
1966
+ onQuantityChange?: (qty: number) => void;
1967
+ onRemove?: () => void;
1968
+ className?: string;
1969
+ }): react_jsx_runtime.JSX.Element;
1970
+ declare function CheckoutSummary({ subtotal, shipping, tax, total, className }: {
1971
+ subtotal: string;
1972
+ shipping?: string;
1973
+ tax?: string;
1974
+ total: string;
1975
+ className?: string;
1976
+ }): react_jsx_runtime.JSX.Element;
1977
+ declare function PricingSlider({ tiers, className }: {
1978
+ tiers: {
1979
+ name: string;
1980
+ price: string;
1981
+ features: string[];
1982
+ }[];
1983
+ className?: string;
1984
+ }): react_jsx_runtime.JSX.Element;
1985
+ declare function InvoiceCard({ invoiceNumber, date, status, amount, client, className }: {
1986
+ invoiceNumber: string;
1987
+ date: string;
1988
+ status: "paid" | "pending" | "overdue";
1989
+ amount: string;
1990
+ client: string;
1991
+ className?: string;
1992
+ }): react_jsx_runtime.JSX.Element;
1993
+ declare function CreditCardVisual({ holder, number, expiry, type, className }: {
1994
+ holder?: string;
1995
+ number?: string;
1996
+ expiry?: string;
1997
+ type?: "visa" | "mastercard" | "amex";
1998
+ className?: string;
1999
+ }): react_jsx_runtime.JSX.Element;
2000
+ declare function CouponCard({ code, discount, description, validUntil, className }: {
2001
+ code: string;
2002
+ discount: string;
2003
+ description?: string;
2004
+ validUntil?: string;
2005
+ className?: string;
2006
+ }): react_jsx_runtime.JSX.Element;
2007
+ declare function SubscriptionCard({ plan, price, nextBilling, status, features, className }: {
2008
+ plan: string;
2009
+ price: string;
2010
+ nextBilling?: string;
2011
+ status?: "active" | "cancelled" | "past_due";
2012
+ features?: string[];
2013
+ className?: string;
2014
+ }): react_jsx_runtime.JSX.Element;
2015
+ declare function ReviewStars({ rating, onChange, size, readonly, className }: {
2016
+ rating?: number;
2017
+ onChange?: (rating: number) => void;
2018
+ size?: number;
2019
+ readonly?: boolean;
2020
+ className?: string;
2021
+ }): react_jsx_runtime.JSX.Element;
2022
+ declare function TrustBadge({ icon, title, subtitle, className }: {
2023
+ icon?: React$1.ReactNode;
2024
+ title: string;
2025
+ subtitle?: string;
2026
+ className?: string;
2027
+ }): react_jsx_runtime.JSX.Element;
2028
+
2029
+ interface GlowSpotlightCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2030
+ children: React$1.ReactNode;
2031
+ glowColor?: string;
2032
+ glowSize?: number;
2033
+ }
2034
+ declare const GlowSpotlightCard: React$1.ForwardRefExoticComponent<GlowSpotlightCardProps & React$1.RefAttributes<HTMLDivElement>>;
2035
+ interface WordFadeRevealProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2036
+ text: string;
2037
+ delay?: number;
2038
+ delayMultiple?: number;
2039
+ duration?: number;
2040
+ }
2041
+ declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): react_jsx_runtime.JSX.Element;
2042
+ interface AnimatedGridBackgroundProps extends React$1.SVGProps<SVGSVGElement> {
2043
+ width?: number;
2044
+ height?: number;
2045
+ strokeWidth?: number;
2046
+ strokeColor?: string;
2047
+ cellFlashColor?: string;
2048
+ flashInterval?: number;
2049
+ maxFlashes?: number;
2050
+ className?: string;
2051
+ }
2052
+ declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): react_jsx_runtime.JSX.Element;
2053
+ interface BentoGridProps extends React$1.HTMLAttributes<HTMLDivElement> {
2054
+ children: React$1.ReactNode;
2055
+ className?: string;
2056
+ }
2057
+ declare function BentoGrid({ children, className, ...props }: BentoGridProps): react_jsx_runtime.JSX.Element;
2058
+ interface BentoCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2059
+ title: string;
2060
+ description: string;
2061
+ header?: React$1.ReactNode;
2062
+ icon?: React$1.ReactNode;
2063
+ children?: React$1.ReactNode;
2064
+ span?: string;
2065
+ delay?: number;
2066
+ className?: string;
2067
+ }
2068
+ declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): react_jsx_runtime.JSX.Element;
2069
+
2070
+ interface CopyButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2071
+ /** The value to copy to clipboard */
2072
+ value: string;
2073
+ }
2074
+ declare function CopyButton({ value, className, ...props }: CopyButtonProps): react_jsx_runtime.JSX.Element;
2075
+
2076
+ declare function cn(...inputs: ClassValue[]): string;
2077
+
2078
+ export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityHeatmap, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, AnimatedLabelInput, AnimatedList, type AnimatedListProps, AppTopbar, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartCard, BarChartSimple, BarLoader, BasicModal, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BlurText, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, CTASectionX, Card, CardCheckbox, type CardCheckboxProps, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularCheckbox, CircularProgressCard, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, CommandPaletteVisual, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormBlock, ContactFormPro, ContactFormX, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyButton, type CopyButtonProps, CopyTextButton, CouponCard, CreditCardVisual, CtaBlock, CurrencyInput, CyberAlert, CyberpunkButton, DangerModal, DashboardGridLayout, DashboardShell, DataGridTable, DataTablePro, DestructiveGlowButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotBadge, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FaqAccordionX, FaqBlock, FeatureCard, FeatureGrid, FeatureGridX, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUploadForm, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, FloatingLabelInput, FloatingNavbar, FooterX, FunnelChart, GalleryGrid, GaugeMeter, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassmorphButton, GlitchText, type GlitchTextProps, GlowAvatar, GlowBadge, GlowButton, type GlowButtonProps, GlowCard, GlowCheckbox, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GlowSwitch, GlowText, GradientAlert, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, GradientRingAvatar, GradientText, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HeroSection, HeroSectionX, HexagonAvatar, HighlightText, type HighlightTextProps, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, IconInputLeft, IconInputRight, IconSwitch, type IconSwitchProps, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, ImageOverlayCard, InitialsAvatar, type InitialsAvatarProps, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveCardCheckbox, InteractiveGlassModal, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineChartCard, LineScaleLoader, LoadingButton, LoginFormPro, LogoCloud, LogoCloudX, MagneticButton, Marquee, type MarqueeProps, MegaMenuVisual, MessageList, Meteors, type MeteorsProps, MetricCard, MetricGrid, MinimalAlert, MinimalBadge, MinimalDropInput, MobileDrawerNav, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, NeonGlowButton, NeonOutlineBadge, NeonSwitch, NeonText, type NeonTextProps, NeumorphicCard, NeumorphicInput, NewsletterBlock, NewsletterSignup, NotificationBadge, NotificationCard, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, OutlineGlowBadge, OutlineGradientButton, OutlineText, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingCardPro, PricingCardsX, PricingComparisonTable, PricingSlider, PricingTableAdvanced, PricingTableSimple, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileCardFull, ProfileSettingsForm, Progress, ProgressBadge, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadarChartMock, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, RankingList, RateLimitAlert, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevealText, type RevealTextProps, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShadowText, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, SimpleCheckbox, SimpleFooter, SimpleNavbar, SimpleSelect, SimpleSwitch, SimpleTooltip, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SparklineStat, SpecialPremiumCard, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, type SpotlightCardProps, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, type StatusAvatarProps, StatusButton, StatusRingBadge, StepIndicator, StepList, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, TaskChecklist, TeamSectionX, TestimonialCard, TestimonialCardBasic, TestimonialCardV2, TestimonialCarousel, TestimonialSliderX, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThickSwitch, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, ToggleInput, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrendStatCard, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileCard, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WeatherCard, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn };