@igorao79/uivix 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,606 @@
1
+ import React from 'react';
2
+ import { ClassValue } from 'clsx';
3
+
4
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
5
+ variant?: "default" | "secondary" | "outline" | "ghost" | "destructive" | "link" | "gradient" | "glow" | "soft";
6
+ size?: "sm" | "md" | "lg" | "icon";
7
+ /** Pill-shaped rounded button */
8
+ pill?: boolean;
9
+ /** Show a loading spinner and disable the button */
10
+ loading?: boolean;
11
+ /** Icon element shown before the children */
12
+ leftIcon?: React.ReactNode;
13
+ /** Icon element shown after the children */
14
+ rightIcon?: React.ReactNode;
15
+ }
16
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
17
+
18
+ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
19
+ variant?: "default" | "filled" | "underline" | "floating" | "ghost" | "glow";
20
+ inputSize?: "sm" | "md" | "lg";
21
+ error?: boolean;
22
+ /** Label text for the floating variant (required when variant="floating") */
23
+ label?: string;
24
+ /** Custom class for the floating label */
25
+ labelClassName?: string;
26
+ /** Custom class for the floating wrapper */
27
+ wrapperClassName?: string;
28
+ /** Icon element to show on the left side */
29
+ leftIcon?: React.ReactNode;
30
+ /** Icon element to show on the right side */
31
+ rightIcon?: React.ReactNode;
32
+ }
33
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
34
+
35
+ interface PasswordInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
36
+ inputSize?: "sm" | "md" | "lg";
37
+ error?: boolean;
38
+ /** Custom class for the wrapper */
39
+ wrapperClassName?: string;
40
+ }
41
+ declare const PasswordInput: React.ForwardRefExoticComponent<PasswordInputProps & React.RefAttributes<HTMLInputElement>>;
42
+
43
+ interface SearchInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
44
+ inputSize?: "sm" | "md" | "lg";
45
+ /** Callback when clear button is clicked */
46
+ onClear?: () => void;
47
+ /** Custom class for the wrapper */
48
+ wrapperClassName?: string;
49
+ }
50
+ declare const SearchInput: React.ForwardRefExoticComponent<SearchInputProps & React.RefAttributes<HTMLInputElement>>;
51
+
52
+ interface OTPInputProps {
53
+ /** Number of OTP digits */
54
+ length?: number;
55
+ /** Callback with the full OTP string */
56
+ onComplete?: (otp: string) => void;
57
+ /** Callback on value change */
58
+ onChange?: (otp: string) => void;
59
+ /** Size of each digit box */
60
+ inputSize?: "sm" | "md" | "lg";
61
+ /** Show error state */
62
+ error?: boolean;
63
+ /** Disable all inputs */
64
+ disabled?: boolean;
65
+ /** Custom class for each digit input */
66
+ className?: string;
67
+ /** Custom class for the wrapper */
68
+ wrapperClassName?: string;
69
+ /** Separator between groups (e.g. show dash after 3rd digit for 6-digit OTP) */
70
+ separatorAfter?: number[];
71
+ }
72
+ declare const OTPInput: React.FC<OTPInputProps>;
73
+
74
+ interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> {
75
+ size?: "sm" | "md" | "lg";
76
+ required?: boolean;
77
+ }
78
+ declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
79
+
80
+ interface TypewriterTextProps {
81
+ /** Array of strings to type through */
82
+ words: string[];
83
+ /** Typing speed in ms per character */
84
+ typeSpeed?: number;
85
+ /** Deleting speed in ms per character */
86
+ deleteSpeed?: number;
87
+ /** Pause before deleting in ms */
88
+ pauseDuration?: number;
89
+ /** Loop the animation */
90
+ loop?: boolean;
91
+ /** Show blinking cursor */
92
+ cursor?: boolean;
93
+ /** Cursor character */
94
+ cursorChar?: string;
95
+ /** Custom class for the text */
96
+ className?: string;
97
+ /** Custom class for the cursor */
98
+ cursorClassName?: string;
99
+ /** HTML tag to render */
100
+ as?: React.ElementType;
101
+ }
102
+ declare const TypewriterText: React.FC<TypewriterTextProps>;
103
+
104
+ interface GradientTextProps {
105
+ children: React.ReactNode;
106
+ /** Animate the gradient */
107
+ animate?: boolean;
108
+ /** Animation speed in seconds */
109
+ speed?: number;
110
+ /** Gradient colors — Tailwind from/via/to classes or custom style */
111
+ colors?: string;
112
+ /** HTML tag */
113
+ as?: React.ElementType;
114
+ className?: string;
115
+ }
116
+ declare const GradientText: React.FC<GradientTextProps>;
117
+
118
+ interface GlitchTextProps {
119
+ children: string;
120
+ /** Animation speed in seconds */
121
+ speed?: number;
122
+ /** Glitch intensity (1-10) */
123
+ intensity?: number;
124
+ /** HTML tag */
125
+ as?: React.ElementType;
126
+ className?: string;
127
+ }
128
+ declare const GlitchText: React.FC<GlitchTextProps>;
129
+
130
+ interface ShimmerTextProps {
131
+ children: React.ReactNode;
132
+ /** Animation speed in seconds */
133
+ speed?: number;
134
+ /** Shimmer color */
135
+ shimmerColor?: string;
136
+ /** Base text color */
137
+ baseColor?: string;
138
+ /** HTML tag */
139
+ as?: React.ElementType;
140
+ className?: string;
141
+ }
142
+ declare const ShimmerText: React.FC<ShimmerTextProps>;
143
+
144
+ interface WaveTextProps {
145
+ children: string;
146
+ /** Delay between each letter in ms */
147
+ delay?: number;
148
+ /** Animation duration in seconds */
149
+ duration?: number;
150
+ /** Wave height in px */
151
+ height?: number;
152
+ /** HTML tag */
153
+ as?: React.ElementType;
154
+ className?: string;
155
+ }
156
+ declare const WaveText: React.FC<WaveTextProps>;
157
+
158
+ interface BlurTextProps {
159
+ children: string;
160
+ /** Animate per word or per letter */
161
+ mode?: "word" | "letter";
162
+ /** Delay between each unit in ms */
163
+ delay?: number;
164
+ /** Animation duration in ms */
165
+ duration?: number;
166
+ /** Trigger on scroll into view */
167
+ triggerOnView?: boolean;
168
+ /** HTML tag */
169
+ as?: React.ElementType;
170
+ className?: string;
171
+ }
172
+ declare const BlurText: React.FC<BlurTextProps>;
173
+
174
+ interface CounterTextProps {
175
+ /** Target number to count to */
176
+ target: number;
177
+ /** Starting number */
178
+ from?: number;
179
+ /** Duration of animation in ms */
180
+ duration?: number;
181
+ /** Decimal places */
182
+ decimals?: number;
183
+ /** Prefix (e.g. "$") */
184
+ prefix?: string;
185
+ /** Suffix (e.g. "%", "+") */
186
+ suffix?: string;
187
+ /** Separator for thousands */
188
+ separator?: string;
189
+ /** Trigger on scroll into view */
190
+ triggerOnView?: boolean;
191
+ /** HTML tag */
192
+ as?: React.ElementType;
193
+ className?: string;
194
+ }
195
+ declare const CounterText: React.FC<CounterTextProps>;
196
+
197
+ interface MediaTextProps {
198
+ /** Text content */
199
+ children: string;
200
+ /** Image URL to fill the text */
201
+ src?: string;
202
+ /** Video URL to fill the text */
203
+ videoSrc?: string;
204
+ /** Background size for image mode */
205
+ backgroundSize?: string;
206
+ /** Background position for image mode */
207
+ backgroundPosition?: string;
208
+ /** Whether video should loop */
209
+ loop?: boolean;
210
+ /** Whether video should be muted */
211
+ muted?: boolean;
212
+ /** HTML tag for text */
213
+ as?: React.ElementType;
214
+ className?: string;
215
+ }
216
+ declare const MediaText: React.FC<MediaTextProps>;
217
+
218
+ interface SparklesTextProps {
219
+ children: string;
220
+ /** Color of sparkles */
221
+ sparkleColor?: string;
222
+ /** Number of sparkles visible at once */
223
+ count?: number;
224
+ /** Min size of sparkles in px */
225
+ minSize?: number;
226
+ /** Max size of sparkles in px */
227
+ maxSize?: number;
228
+ /** Speed — lower = faster new sparkles (ms) */
229
+ speed?: number;
230
+ /** HTML tag */
231
+ as?: React.ElementType;
232
+ className?: string;
233
+ }
234
+ declare const SparklesText: React.FC<SparklesTextProps>;
235
+
236
+ type HighlightVariant = "marker" | "underline" | "box" | "strikethrough" | "gradient" | "glow" | "bracket";
237
+ interface HighlightTextProps {
238
+ children: string;
239
+ /** Highlight style variant */
240
+ variant?: HighlightVariant;
241
+ /** Primary highlight color */
242
+ color?: string;
243
+ /** Second color (for gradient variant) */
244
+ colorTo?: string;
245
+ /** Animation duration in ms */
246
+ duration?: number;
247
+ /** Delay before animation starts in ms */
248
+ delay?: number;
249
+ /** Whether to trigger when scrolled into view */
250
+ triggerOnView?: boolean;
251
+ /** HTML tag */
252
+ as?: React.ElementType;
253
+ className?: string;
254
+ }
255
+ declare const HighlightText: React.FC<HighlightTextProps>;
256
+
257
+ interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
258
+ variant?: "default" | "bordered" | "elevated" | "ghost" | "gradient" | "glass" | "spotlight" | "neon" | "tilt" | "animated-border" | "noise" | "lifted";
259
+ }
260
+ declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
261
+ interface CardHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
262
+ }
263
+ declare const CardHeader: React.ForwardRefExoticComponent<CardHeaderProps & React.RefAttributes<HTMLDivElement>>;
264
+ interface CardTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
265
+ }
266
+ declare const CardTitle: React.ForwardRefExoticComponent<CardTitleProps & React.RefAttributes<HTMLHeadingElement>>;
267
+ interface CardDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
268
+ }
269
+ declare const CardDescription: React.ForwardRefExoticComponent<CardDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
270
+ interface CardContentProps extends React.HTMLAttributes<HTMLDivElement> {
271
+ }
272
+ declare const CardContent: React.ForwardRefExoticComponent<CardContentProps & React.RefAttributes<HTMLDivElement>>;
273
+ interface CardFooterProps extends React.HTMLAttributes<HTMLDivElement> {
274
+ }
275
+ declare const CardFooter: React.ForwardRefExoticComponent<CardFooterProps & React.RefAttributes<HTMLDivElement>>;
276
+
277
+ interface ParticleNode {
278
+ /** Text label, emoji, or image URL */
279
+ content: string;
280
+ /** Type of content */
281
+ type?: "text" | "emoji" | "image";
282
+ }
283
+ interface ParticleBackgroundProps {
284
+ /** Array of items to display as floating particles */
285
+ items: (string | ParticleNode)[];
286
+ /** Max number of particles (auto-limited by screen size) */
287
+ count?: number;
288
+ /** Connection line distance threshold in px */
289
+ connectionDistance?: number;
290
+ /** Show arrowheads on connection lines */
291
+ arrows?: boolean;
292
+ /** Mouse interaction distance */
293
+ mouseDistance?: number;
294
+ /** Base color for text/lines as [r, g, b] */
295
+ color?: [number, number, number];
296
+ /** Particle movement speed multiplier */
297
+ speed?: number;
298
+ /** Base font size range [min, max] in px */
299
+ fontSize?: [number, number];
300
+ /** Image size in px (for image type nodes) */
301
+ imageSize?: number;
302
+ /** Line width */
303
+ lineWidth?: number;
304
+ /** Max particle opacity */
305
+ maxOpacity?: number;
306
+ /** CSS class for the canvas wrapper */
307
+ className?: string;
308
+ }
309
+ declare const ParticleBackground: React.FC<ParticleBackgroundProps>;
310
+
311
+ interface AuroraBackgroundProps {
312
+ /** Colors as CSS color strings */
313
+ colors?: string[];
314
+ /** Animation speed multiplier */
315
+ speed?: number;
316
+ /** Blur intensity in px */
317
+ blur?: number;
318
+ /** Opacity of the aurora layer (0-1) */
319
+ opacity?: number;
320
+ className?: string;
321
+ }
322
+ declare const AuroraBackground: React.FC<AuroraBackgroundProps>;
323
+
324
+ interface GridBackgroundProps {
325
+ /** Grid variant */
326
+ variant?: "grid" | "dots" | "cross";
327
+ /** Grid cell size in px */
328
+ size?: number;
329
+ /** Grid line/dot color */
330
+ color?: string;
331
+ /** Grid line/dot opacity */
332
+ opacity?: number;
333
+ /** Animated radial mask that follows the mouse */
334
+ followMouse?: boolean;
335
+ /** Radial mask radius in px */
336
+ maskRadius?: number;
337
+ className?: string;
338
+ }
339
+ declare const GridBackground: React.FC<GridBackgroundProps>;
340
+
341
+ interface StarfieldBackgroundProps {
342
+ /** Number of stars */
343
+ count?: number;
344
+ /** Star speed multiplier */
345
+ speed?: number;
346
+ /** Star color */
347
+ color?: [number, number, number];
348
+ /** Max star size */
349
+ maxSize?: number;
350
+ /** Enable warp speed effect */
351
+ warp?: boolean;
352
+ className?: string;
353
+ }
354
+ declare const StarfieldBackground: React.FC<StarfieldBackgroundProps>;
355
+
356
+ interface WaveBackgroundProps {
357
+ /** Wave colors from top to bottom */
358
+ colors?: string[];
359
+ /** Number of wave layers */
360
+ layers?: number;
361
+ /** Animation speed multiplier */
362
+ speed?: number;
363
+ /** Wave amplitude in px */
364
+ amplitude?: number;
365
+ /** Wave frequency */
366
+ frequency?: number;
367
+ className?: string;
368
+ }
369
+ declare const WaveBackground: React.FC<WaveBackgroundProps>;
370
+
371
+ interface GradientMeshBackgroundProps {
372
+ /** Array of 4 color stops */
373
+ colors?: string[];
374
+ /** Animation speed multiplier */
375
+ speed?: number;
376
+ /** Mesh intensity / contrast */
377
+ intensity?: number;
378
+ className?: string;
379
+ }
380
+ declare const GradientMeshBackground: React.FC<GradientMeshBackgroundProps>;
381
+
382
+ interface MatrixRainBackgroundProps {
383
+ /** Characters to use */
384
+ charset?: string;
385
+ /** Column width in px */
386
+ columnWidth?: number;
387
+ /** Fall speed multiplier */
388
+ speed?: number;
389
+ /** Text color */
390
+ color?: string;
391
+ /** Font size in px */
392
+ fontSize?: number;
393
+ className?: string;
394
+ }
395
+ declare const MatrixRainBackground: React.FC<MatrixRainBackgroundProps>;
396
+
397
+ type BokehShape = "circle" | "hexagon" | "diamond" | "triangle" | "star" | "ring" | "mixed";
398
+ interface BokehBackgroundProps {
399
+ /** Number of bokeh shapes */
400
+ count?: number;
401
+ /** Base colors */
402
+ colors?: string[];
403
+ /** Shape of bokeh elements */
404
+ shape?: BokehShape;
405
+ /** Animation speed multiplier */
406
+ speed?: number;
407
+ /** Min/max size in px */
408
+ sizeRange?: [number, number];
409
+ className?: string;
410
+ }
411
+ declare const BokehBackground: React.FC<BokehBackgroundProps>;
412
+
413
+ type PixelVariant = "rain" | "life" | "terrain" | "noise";
414
+ interface PixelBackgroundProps {
415
+ /** Pixel art style */
416
+ variant?: PixelVariant;
417
+ /** Pixel size in px */
418
+ pixelSize?: number;
419
+ /** Base colors */
420
+ colors?: string[];
421
+ /** Animation speed multiplier */
422
+ speed?: number;
423
+ /** Pixel opacity */
424
+ opacity?: number;
425
+ className?: string;
426
+ }
427
+ declare const PixelBackground: React.FC<PixelBackgroundProps>;
428
+
429
+ interface RippleBackgroundProps {
430
+ /** Number of ripple rings */
431
+ count?: number;
432
+ /** Base color */
433
+ color?: string;
434
+ /** Animation duration per ring in seconds */
435
+ duration?: number;
436
+ className?: string;
437
+ }
438
+ declare const RippleBackground: React.FC<RippleBackgroundProps>;
439
+
440
+ interface DotPatternBackgroundProps {
441
+ /** Spacing between dots */
442
+ spacing?: number;
443
+ /** Dot radius */
444
+ radius?: number;
445
+ /** Dot color */
446
+ color?: string;
447
+ /** Enable glow animation — dots pulse randomly */
448
+ glow?: boolean;
449
+ /** Glow color (defaults to color) */
450
+ glowColor?: string;
451
+ /** Mouse proximity — dots grow near cursor */
452
+ mouseReactive?: boolean;
453
+ /** Mouse influence radius */
454
+ mouseRadius?: number;
455
+ className?: string;
456
+ }
457
+ declare const DotPatternBackground: React.FC<DotPatternBackgroundProps>;
458
+
459
+ interface RetroGridBackgroundProps {
460
+ /** Grid cell size in px */
461
+ cellSize?: number;
462
+ /** Line color */
463
+ lineColor?: string;
464
+ /** Scroll speed multiplier */
465
+ speed?: number;
466
+ /** Show horizon glow */
467
+ glow?: boolean;
468
+ /** Number of vertical lines */
469
+ verticalLines?: number;
470
+ /** Number of horizontal lines */
471
+ horizontalLines?: number;
472
+ className?: string;
473
+ }
474
+ declare const RetroGridBackground: React.FC<RetroGridBackgroundProps>;
475
+
476
+ interface MeteorBackgroundProps {
477
+ /** Number of meteors */
478
+ count?: number;
479
+ /** Meteor angle in degrees (215 = top-right to bottom-left) */
480
+ angle?: number;
481
+ /** Meteor color */
482
+ color?: string;
483
+ /** Tail length in px */
484
+ tailLength?: number;
485
+ /** Speed multiplier */
486
+ speed?: number;
487
+ className?: string;
488
+ }
489
+ declare const MeteorBackground: React.FC<MeteorBackgroundProps>;
490
+
491
+ interface BeamsBackgroundProps {
492
+ /** Number of beams */
493
+ count?: number;
494
+ /** Beam colors */
495
+ colors?: string[];
496
+ /** Animation speed multiplier */
497
+ speed?: number;
498
+ /** Beam max opacity */
499
+ opacity?: number;
500
+ /** Beam width in px */
501
+ beamWidth?: number;
502
+ className?: string;
503
+ }
504
+ declare const BeamsBackground: React.FC<BeamsBackgroundProps>;
505
+
506
+ type BadgeVariant = "default" | "secondary" | "outline" | "success" | "warning" | "destructive" | "glow" | "gradient" | "glass" | "neon" | "shimmer" | "soft" | "info" | "premium" | "new" | "beta";
507
+ interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement> {
508
+ variant?: BadgeVariant;
509
+ size?: "sm" | "md" | "lg";
510
+ dot?: boolean;
511
+ dotColor?: string;
512
+ /** Pill shape (more rounded) */
513
+ pill?: boolean;
514
+ /** Icon before text */
515
+ icon?: React.ReactNode;
516
+ }
517
+ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
518
+
519
+ type TooltipVariant = "default" | "dark" | "light" | "gradient" | "glass" | "outlined" | "neon" | "success" | "warning" | "error";
520
+ interface TooltipProps {
521
+ content: React.ReactNode;
522
+ side?: "top" | "bottom" | "left" | "right";
523
+ variant?: TooltipVariant;
524
+ delay?: number;
525
+ arrow?: boolean;
526
+ children: React.ReactNode;
527
+ className?: string;
528
+ }
529
+ declare const Tooltip: React.FC<TooltipProps>;
530
+
531
+ type ToggleVariant = "default" | "ios" | "material" | "outline" | "glow" | "pill" | "slim" | "labeled";
532
+ interface ToggleProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> {
533
+ size?: "sm" | "md" | "lg";
534
+ variant?: ToggleVariant;
535
+ color?: string;
536
+ label?: string;
537
+ }
538
+ declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
539
+
540
+ interface SeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
541
+ /** Orientation */
542
+ orientation?: "horizontal" | "vertical";
543
+ /** Visual style */
544
+ variant?: "default" | "dashed" | "dotted" | "gradient";
545
+ /** Label in the middle */
546
+ label?: string;
547
+ }
548
+ declare const Separator: React.ForwardRefExoticComponent<SeparatorProps & React.RefAttributes<HTMLDivElement>>;
549
+
550
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
551
+ /** Shape variant */
552
+ variant?: "rectangle" | "circle" | "text";
553
+ /** Width (CSS value) */
554
+ width?: string | number;
555
+ /** Height (CSS value) */
556
+ height?: string | number;
557
+ /** Animation style */
558
+ animation?: "pulse" | "shimmer" | "none";
559
+ }
560
+ declare const Skeleton: React.FC<SkeletonProps>;
561
+
562
+ interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> {
563
+ /** Progress value 0-100 */
564
+ value?: number;
565
+ /** Visual style */
566
+ variant?: "default" | "gradient" | "striped" | "glow";
567
+ /** Bar size */
568
+ size?: "sm" | "md" | "lg";
569
+ /** Show percentage label */
570
+ showValue?: boolean;
571
+ /** Bar color */
572
+ color?: string;
573
+ }
574
+ declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
575
+
576
+ interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> {
577
+ src?: string;
578
+ alt?: string;
579
+ fallback?: string;
580
+ size?: number;
581
+ shape?: "circle" | "square";
582
+ status?: "online" | "offline" | "busy" | "away";
583
+ ring?: boolean;
584
+ ringColor?: string;
585
+ }
586
+ declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLDivElement>>;
587
+
588
+ interface MarqueeProps {
589
+ children: React.ReactNode;
590
+ /** Speed in seconds for one full cycle */
591
+ speed?: number;
592
+ /** Direction */
593
+ direction?: "left" | "right" | "up" | "down";
594
+ /** Pause on hover */
595
+ pauseOnHover?: boolean;
596
+ /** Fade edges */
597
+ fade?: boolean;
598
+ /** Number of copies (higher = smoother for short content) */
599
+ repeat?: number;
600
+ className?: string;
601
+ }
602
+ declare const Marquee: React.FC<MarqueeProps>;
603
+
604
+ declare function cn(...inputs: ClassValue[]): string;
605
+
606
+ export { AuroraBackground, type AuroraBackgroundProps, Avatar, type AvatarProps, Badge, type BadgeProps, BeamsBackground, type BeamsBackgroundProps, BlurText, type BlurTextProps, BokehBackground, type BokehBackgroundProps, type BokehShape, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, CounterText, type CounterTextProps, DotPatternBackground, type DotPatternBackgroundProps, GlitchText, type GlitchTextProps, GradientMeshBackground, type GradientMeshBackgroundProps, GradientText, type GradientTextProps, GridBackground, type GridBackgroundProps, HighlightText, type HighlightTextProps, Input, type InputProps, Label, type LabelProps, Marquee, type MarqueeProps, MatrixRainBackground, type MatrixRainBackgroundProps, MediaText, type MediaTextProps, MeteorBackground, type MeteorBackgroundProps, OTPInput, type OTPInputProps, ParticleBackground, type ParticleBackgroundProps, type ParticleNode, PasswordInput, type PasswordInputProps, PixelBackground, type PixelBackgroundProps, type PixelVariant, Progress, type ProgressProps, RetroGridBackground, type RetroGridBackgroundProps, RippleBackground, type RippleBackgroundProps, SearchInput, type SearchInputProps, Separator, type SeparatorProps, ShimmerText, type ShimmerTextProps, Skeleton, type SkeletonProps, SparklesText, type SparklesTextProps, StarfieldBackground, type StarfieldBackgroundProps, Toggle, type ToggleProps, Tooltip, type TooltipProps, TypewriterText, type TypewriterTextProps, WaveBackground, type WaveBackgroundProps, WaveText, type WaveTextProps, cn };