nexoreui 0.1.3 → 1.6.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.
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
2
  import * as React$1 from 'react';
3
+ import React__default from 'react';
3
4
  import { VariantProps } from 'class-variance-authority';
4
- import * as react_jsx_runtime from 'react/jsx-runtime';
5
5
  import * as TabsPrimitive from '@radix-ui/react-tabs';
6
6
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
7
7
  import * as DialogPrimitive from '@radix-ui/react-dialog';
@@ -11,6 +11,8 @@ import * as SwitchPrimitive from '@radix-ui/react-switch';
11
11
  import * as SelectPrimitive from '@radix-ui/react-select';
12
12
  import { Toaster as Toaster$1 } from 'sonner';
13
13
  export { toast } from 'sonner';
14
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
15
+ import * as SliderPrimitive from '@radix-ui/react-slider';
14
16
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
15
17
  import { HTMLMotionProps } from 'framer-motion';
16
18
  import { LucideIcon } from 'lucide-react';
@@ -47,23 +49,65 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
47
49
  }
48
50
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
49
51
 
52
+ /**
53
+ * @deprecated Use the unified `<Button variant="neon">` instead.
54
+ */
50
55
  declare const NeonButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
56
+ /**
57
+ * @deprecated Use custom styles or class variance utilities on the unified `<Button>` instead.
58
+ */
51
59
  declare const ThreeDButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
60
+ /**
61
+ * @deprecated Use custom ripple animations on the unified `<Button>` instead.
62
+ */
52
63
  declare const RippleButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
64
+ /**
65
+ * @deprecated Use standard utility classes on the unified `<Button>` instead.
66
+ */
53
67
  declare const CyberpunkButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
68
+ /**
69
+ * @deprecated Use the unified `<Button variant="magnetic">` instead.
70
+ */
54
71
  declare const MagneticButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
72
+ /**
73
+ * @deprecated Use the unified `<Button variant="shimmer">` instead.
74
+ */
55
75
  declare const ShimmerButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
76
+ /**
77
+ * @deprecated Use a custom hover effect on the unified `<Button>` instead.
78
+ */
56
79
  declare const BorderBeamButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
80
+ /**
81
+ * @deprecated Use the unified `<Button isLoading={...}>` instead.
82
+ */
57
83
  declare const LoadingButton: React$1.ForwardRefExoticComponent<ButtonProps & {
58
84
  isLoading?: boolean;
59
85
  } & React$1.RefAttributes<HTMLButtonElement>>;
86
+ /**
87
+ * @deprecated Use the unified `<Button variant="destructive" glow>` instead.
88
+ */
60
89
  declare const DestructiveGlowButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
90
+ /**
91
+ * @deprecated Use the unified `<Button variant="outline">` instead.
92
+ */
61
93
  declare const GhostOutlineButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
94
+ /**
95
+ * @deprecated Use the unified `<Button variant="glow">` instead.
96
+ */
62
97
  declare const GlowButton: React$1.ForwardRefExoticComponent<ButtonProps & {
63
98
  glowColor?: string;
64
99
  } & React$1.RefAttributes<HTMLButtonElement>>;
100
+ /**
101
+ * @deprecated Use the unified `<Button shimmer>` instead.
102
+ */
65
103
  declare const ShinyButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
104
+ /**
105
+ * @deprecated Use the unified `<Button variant="gradient">` instead.
106
+ */
66
107
  declare const GradientButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
108
+ /**
109
+ * @deprecated Use the unified `<Button variant="glass">` instead.
110
+ */
67
111
  declare const GlassButton: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
68
112
 
69
113
  declare const cardVariants: (props?: ({
@@ -79,26 +123,6 @@ interface CardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'
79
123
  * @default true
80
124
  */
81
125
  animate?: boolean;
82
- /**
83
- * The main title of the card
84
- */
85
- title?: React$1.ReactNode;
86
- /**
87
- * The subtitle or description of the card
88
- */
89
- description?: React$1.ReactNode;
90
- /**
91
- * Content to render in the card footer area
92
- */
93
- footer?: React$1.ReactNode;
94
- /**
95
- * An optional image URL to display at the top of the card
96
- */
97
- image?: string;
98
- /**
99
- * HTML alternative text for the image
100
- */
101
- imageAlt?: string;
102
126
  /**
103
127
  * Back content displayed when using the `flip` variant on hover
104
128
  */
@@ -121,16 +145,6 @@ declare const GlowCard: React$1.ForwardRefExoticComponent<CardProps & React$1.Re
121
145
  declare const GradientCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
122
146
  declare const HoverCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
123
147
  declare const SpotlightCard: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
124
- declare const ImageCard: ({ src, title, subtitle, imageUrl, description }: any) => react_jsx_runtime.JSX.Element;
125
- declare const ProfileCard: ({ name, role, avatar }: any) => react_jsx_runtime.JSX.Element;
126
- declare const ProductCard: ({ title, price, category, src }: any) => react_jsx_runtime.JSX.Element;
127
- declare const ArticleCard: ({ title, excerpt, date }: any) => react_jsx_runtime.JSX.Element;
128
- declare const StatCardSimple: ({ label, value, trend }: any) => react_jsx_runtime.JSX.Element;
129
- declare const PricingCardBasic: ({ name, price, features }: any) => react_jsx_runtime.JSX.Element;
130
- declare const WeatherCard: ({ city, temp, condition }: any) => react_jsx_runtime.JSX.Element;
131
- declare const EventCard: ({ title, date, location }: any) => react_jsx_runtime.JSX.Element;
132
- declare const TestimonialCardBasic: ({ text, author }: any) => react_jsx_runtime.JSX.Element;
133
- declare const InteractiveCard: ({ title, description }: any) => react_jsx_runtime.JSX.Element;
134
148
 
135
149
  declare const inputVariants: (props?: ({
136
150
  variant?: "default" | "glass" | "gradient" | "underline" | "otp" | "tags" | "autocomplete" | null | undefined;
@@ -148,6 +162,10 @@ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>,
148
162
  * Current text value of the input
149
163
  */
150
164
  value?: string;
165
+ /**
166
+ * Initial default value for uncontrolled inputs
167
+ */
168
+ defaultValue?: string | number;
151
169
  /**
152
170
  * Callback fired when value changes
153
171
  */
@@ -176,6 +194,21 @@ interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>,
176
194
  * Callback fired when a suggestion item is clicked
177
195
  */
178
196
  onSuggestionSelect?: (value: string) => void;
197
+ /**
198
+ * Label displayed above the input field
199
+ * @example <Input label="Email address" />
200
+ */
201
+ label?: string;
202
+ /**
203
+ * Helper text displayed below the input field
204
+ * @example <Input description="We'll never share your email" />
205
+ */
206
+ description?: string;
207
+ /**
208
+ * Validation error message — shown in red below the field
209
+ * @example <Input error={errors.email?.message} />
210
+ */
211
+ error?: string;
179
212
  }
180
213
  declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
181
214
 
@@ -203,76 +236,37 @@ declare const FloatingLabelInput: React$1.ForwardRefExoticComponent<InputProps &
203
236
  declare const MinimalDropInput: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
204
237
 
205
238
  declare const badgeVariants: (props?: ({
206
- variant?: "default" | "secondary" | "destructive" | "outline" | "neon" | "gradient" | "success" | null | undefined;
239
+ variant?: "default" | "secondary" | "destructive" | "outline" | "neon" | "gradient" | "success" | "warning" | "info" | null | undefined;
207
240
  size?: "default" | "sm" | "lg" | null | undefined;
208
241
  } & class_variance_authority_types.ClassProp) | undefined) => string;
209
242
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
243
+ /**
244
+ * Описание для pulse
245
+ * @default undefined
246
+ */
210
247
  pulse?: boolean;
248
+ /**
249
+ * Описание для dot
250
+ * @default undefined
251
+ */
211
252
  dot?: boolean;
253
+ /**
254
+ * Описание для text
255
+ * @default undefined
256
+ */
212
257
  text?: string;
213
258
  }
214
- declare function Badge({ className, variant, size, pulse, dot, children, text, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
215
-
216
- declare const GlowBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
217
- declare const GlassBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
218
- declare const DotBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
219
- declare const GradientBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
220
- declare const OutlineGlowBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
221
- declare const PulseBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
222
- declare const SoftBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
223
- declare const TagBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
224
- declare const PremiumBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
225
- declare const MinimalBadge: ({ children, className, ...props }: BadgeProps) => react_jsx_runtime.JSX.Element;
226
- declare const NotificationBadge: ({ count, className }: {
227
- count: number;
228
- className?: string;
229
- }) => react_jsx_runtime.JSX.Element;
230
- declare const RibbonBadge: ({ children, text, className }: {
231
- children?: React$1.ReactNode;
232
- text?: string;
233
- className?: string;
234
- }) => react_jsx_runtime.JSX.Element;
235
- interface OutlineDotBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
236
- status?: string;
237
- text?: string;
238
- }
239
- declare const OutlineDotBadge: ({ children, className, status, text, ...props }: OutlineDotBadgeProps) => react_jsx_runtime.JSX.Element;
240
- interface GradientOutlineBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
241
- text?: string;
242
- }
243
- declare const GradientOutlineBadge: ({ children, text, className, ...props }: GradientOutlineBadgeProps) => react_jsx_runtime.JSX.Element;
244
- interface IconBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
245
- icon?: React$1.ReactNode;
246
- text?: string;
247
- }
248
- declare const IconBadge: ({ children, icon, text, className, ...props }: IconBadgeProps) => react_jsx_runtime.JSX.Element;
249
- interface FloatingBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
250
- text?: string;
251
- }
252
- declare const FloatingBadge: ({ children, text, className, ...props }: FloatingBadgeProps) => react_jsx_runtime.JSX.Element;
253
- interface ProgressBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
254
- progress?: number;
255
- text?: string;
256
- }
257
- declare const ProgressBadge: ({ children, progress, text, className, ...props }: ProgressBadgeProps) => react_jsx_runtime.JSX.Element;
258
- interface StatusRingBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement> {
259
- status?: "success" | "error" | "warning" | "active" | string;
260
- }
261
- declare const StatusRingBadge: ({ status, children, className, ...props }: StatusRingBadgeProps) => react_jsx_runtime.JSX.Element;
262
- interface NeonOutlineBadgeProps extends React$1.HTMLAttributes<HTMLDivElement> {
263
- text?: string;
264
- }
265
- declare const NeonOutlineBadge: ({ children, text, className, ...props }: NeonOutlineBadgeProps) => react_jsx_runtime.JSX.Element;
266
- interface TagLabelProps extends React$1.HTMLAttributes<HTMLSpanElement> {
267
- text?: string;
268
- }
269
- declare const TagLabel: ({ children, text, className, ...props }: TagLabelProps) => react_jsx_runtime.JSX.Element;
259
+ declare function Badge({ className, variant, size, pulse, dot, children, text, ...props }: BadgeProps): React$1.JSX.Element;
270
260
 
271
261
  declare const avatarVariants: (props?: ({
272
262
  size?: "default" | "sm" | "lg" | "xl" | null | undefined;
273
263
  variant?: "default" | "glass" | "gradient" | "glow" | null | undefined;
274
264
  } & class_variance_authority_types.ClassProp) | undefined) => string;
275
265
  interface AvatarProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof avatarVariants> {
266
+ /**
267
+ * Описание для status
268
+ * @default undefined
269
+ */
276
270
  status?: "online" | "offline" | "away" | "busy";
277
271
  }
278
272
  declare const Avatar: React$1.ForwardRefExoticComponent<AvatarProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -280,18 +274,18 @@ interface AvatarImageProps extends React$1.ImgHTMLAttributes<HTMLImageElement> {
280
274
  }
281
275
  declare const AvatarImage: React$1.ForwardRefExoticComponent<AvatarImageProps & React$1.RefAttributes<HTMLImageElement>>;
282
276
  declare const AvatarFallback: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
283
- declare const GlowAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
284
- declare const StatusAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
285
- declare const GlassAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
286
- declare const SquareAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
287
- declare const HexagonAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
288
- declare const SquircleAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
289
- declare const GradientRingAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
290
- declare const InitialsAvatar: ({ fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
291
- declare const InitialsGradientAvatar: ({ fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
292
- declare const OutlineAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
293
- declare const HoverExpandAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
294
- declare const PulseAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
277
+ declare const GlowAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
278
+ declare const StatusAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
279
+ declare const GlassAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
280
+ declare const SquareAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
281
+ declare const HexagonAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
282
+ declare const SquircleAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
283
+ declare const GradientRingAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
284
+ declare const InitialsAvatar: ({ fallback, size, status, className }: any) => React$1.JSX.Element;
285
+ declare const InitialsGradientAvatar: ({ fallback, size, status, className }: any) => React$1.JSX.Element;
286
+ declare const OutlineAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
287
+ declare const HoverExpandAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
288
+ declare const PulseAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
295
289
  declare const StackAvatar: ({ avatars, urls, max, className }: {
296
290
  avatars?: Array<{
297
291
  src?: string;
@@ -300,259 +294,72 @@ declare const StackAvatar: ({ avatars, urls, max, className }: {
300
294
  urls?: string[];
301
295
  max?: number;
302
296
  className?: string;
303
- }) => react_jsx_runtime.JSX.Element;
304
- declare const DottedAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
305
- declare const ShadowAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
306
- declare const PolymorphAvatar: ({ src, fallback, size, status, className }: any) => react_jsx_runtime.JSX.Element;
307
- declare const TooltipAvatar: ({ src, fallback, size, status, tooltipText, className }: any) => react_jsx_runtime.JSX.Element;
308
- declare const AnimatedBorderAvatar: ({ src, fallback }: any) => react_jsx_runtime.JSX.Element;
297
+ }) => React$1.JSX.Element;
298
+ declare const DottedAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
299
+ declare const ShadowAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
300
+ declare const PolymorphAvatar: ({ src, fallback, size, status, className }: any) => React$1.JSX.Element;
301
+ declare const TooltipAvatar: ({ src, fallback, size, status, tooltipText, className }: any) => React$1.JSX.Element;
302
+ declare const AnimatedBorderAvatar: ({ src, fallback }: any) => React$1.JSX.Element;
309
303
 
310
- declare const TabsRoot: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
311
- declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
312
- declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
313
- declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
314
- interface TabsItem {
315
- label: React$1.ReactNode;
316
- value: string;
317
- content: React$1.ReactNode;
304
+ declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
305
+ declare const tabsListVariants: (props?: ({
306
+ variant?: "default" | "underline" | "pill" | null | undefined;
307
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
308
+ interface TabsListProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.List>, VariantProps<typeof tabsListVariants> {
318
309
  }
319
- interface TabsProps {
320
- /**
321
- * The array of tab items
322
- */
323
- items?: TabsItem[];
324
- /**
325
- * The default active tab value
326
- */
327
- defaultValue?: string;
328
- /**
329
- * The variant of the tabs
330
- * @default "default"
331
- */
332
- variant?: "default" | "glass" | "outline";
333
- /**
334
- * Additional class names
335
- */
336
- className?: string;
337
- /**
338
- * Children for compound usage
339
- */
340
- children?: React$1.ReactNode;
310
+ declare const TabsList: React$1.ForwardRefExoticComponent<TabsListProps & React$1.RefAttributes<HTMLDivElement>>;
311
+ declare const tabsTriggerVariants: (props?: ({
312
+ variant?: "default" | "underline" | "pill" | null | undefined;
313
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
314
+ interface TabsTriggerProps extends React$1.ComponentPropsWithoutRef<typeof TabsPrimitive.Trigger>, VariantProps<typeof tabsTriggerVariants> {
341
315
  }
342
- declare function Tabs({ items, defaultValue, variant, className, children, }: TabsProps): react_jsx_runtime.JSX.Element;
316
+ declare const TabsTrigger: React$1.ForwardRefExoticComponent<TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
317
+ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
343
318
 
344
- declare const AccordionRoot: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
345
- declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
346
- declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
319
+ declare const accordionVariants: (props?: ({
320
+ variant?: "default" | "outline" | "neon" | "glass" | null | undefined;
321
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
322
+ type AccordionProps = React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Root> & VariantProps<typeof accordionVariants>;
323
+ declare const Accordion: React$1.ForwardRefExoticComponent<AccordionProps & React$1.RefAttributes<HTMLDivElement>>;
324
+ declare const accordionItemVariants: (props?: ({
325
+ variant?: "default" | "neon" | null | undefined;
326
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
327
+ type AccordionItemProps = React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> & VariantProps<typeof accordionItemVariants>;
328
+ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
329
+ variant?: "default" | "neon" | null | undefined;
330
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
331
+ interface AccordionTriggerProps extends React$1.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> {
332
+ iconType?: "chevron" | "plus";
333
+ iconClassName?: string;
334
+ variant?: "default" | "neon";
335
+ }
336
+ declare const AccordionTrigger: React$1.ForwardRefExoticComponent<AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
347
337
  declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
348
- interface AccordionItemData {
349
- title: React$1.ReactNode;
350
- content: React$1.ReactNode;
351
- }
352
- interface AccordionProps {
353
- /**
354
- * The array of accordion items
355
- */
356
- items: AccordionItemData[];
357
- /**
358
- * The type of accordion
359
- * @default "single"
360
- */
361
- type?: "single" | "multiple";
362
- /**
363
- * The variant of the accordion
364
- * @default "default"
365
- */
366
- variant?: "default" | "glass" | "outline";
367
- /**
368
- * Additional class names
369
- */
370
- className?: string;
371
- /**
372
- * Whether the items can be collapsed (only for type="single")
373
- * @default true
374
- */
375
- collapsible?: boolean;
376
- }
377
- declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps): react_jsx_runtime.JSX.Element;
378
-
379
- interface SimpleAccordionProps {
380
- title?: React$1.ReactNode;
381
- children?: React$1.ReactNode;
382
- defaultOpen?: boolean;
383
- className?: string;
384
- }
385
- declare const SimpleAccordion: ({ title, children, defaultOpen, className }: SimpleAccordionProps) => react_jsx_runtime.JSX.Element;
386
- declare const PlusAccordion: ({ title, children, defaultOpen, className }: SimpleAccordionProps) => react_jsx_runtime.JSX.Element;
387
- declare const NeonAccordion: ({ title, children, defaultOpen, className }: SimpleAccordionProps) => react_jsx_runtime.JSX.Element;
388
338
 
389
339
  declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
390
340
  declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
391
341
  declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
392
342
  declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
393
343
  declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
394
- declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
344
+ declare const dialogContentVariants: (props?: ({
345
+ variant?: "default" | "destructive" | "glass" | "success" | "fullscreen" | "drawer" | null | undefined;
346
+ size?: "sm" | "lg" | "xl" | "md" | "2xl" | "full" | null | undefined;
347
+ scrollable?: boolean | null | undefined;
348
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
349
+ interface DialogContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof dialogContentVariants> {
350
+ }
351
+ declare const DialogContent: React$1.ForwardRefExoticComponent<DialogContentProps & React$1.RefAttributes<HTMLDivElement>>;
395
352
  declare const DialogHeader: {
396
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
353
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
397
354
  displayName: string;
398
355
  };
399
356
  declare const DialogFooter: {
400
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
357
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
401
358
  displayName: string;
402
359
  };
403
360
  declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
404
361
  declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
405
362
 
406
- interface ModalProps {
407
- /**
408
- * The title of the modal
409
- */
410
- title?: React$1.ReactNode;
411
- /**
412
- * The description of the modal
413
- */
414
- description?: React$1.ReactNode;
415
- /**
416
- * The content of the modal
417
- */
418
- children?: React$1.ReactNode;
419
- /**
420
- * The trigger element to open the modal
421
- */
422
- trigger?: React$1.ReactNode;
423
- /**
424
- * Callback function called when the confirm button is clicked
425
- */
426
- onConfirm?: () => void;
427
- /**
428
- * Callback function called when the cancel button is clicked
429
- */
430
- onCancel?: () => void;
431
- /**
432
- * The text for the confirm button
433
- * @default "Confirm"
434
- */
435
- confirmText?: string;
436
- /**
437
- * The text for the cancel button
438
- * @default "Cancel"
439
- */
440
- cancelText?: string;
441
- /**
442
- * Whether the modal is open
443
- */
444
- isOpen?: boolean;
445
- /**
446
- * Callback function called when the open state changes
447
- */
448
- onOpenChange?: (open: boolean) => void;
449
- /**
450
- * The variant of the modal
451
- * @default "default"
452
- */
453
- variant?: "default" | "glass" | "destructive" | "success" | "fullscreen" | "drawer";
454
- /**
455
- * Whether the content is scrollable
456
- * @default false
457
- */
458
- scrollable?: boolean;
459
- /**
460
- * Additional className for the dialog content
461
- */
462
- className?: string;
463
- }
464
- declare function Modal({ title, description, children, trigger, onConfirm, onCancel, confirmText, cancelText, isOpen, onOpenChange, variant, scrollable, className, }: ModalProps): react_jsx_runtime.JSX.Element;
465
- interface BasicModalProps {
466
- isOpen?: boolean;
467
- onOpenChange?: (open: boolean) => void;
468
- trigger?: React$1.ReactNode;
469
- title?: string;
470
- description?: string;
471
- children?: React$1.ReactNode;
472
- confirmText?: string;
473
- cancelText?: string;
474
- onConfirm?: () => void;
475
- onCancel?: () => void;
476
- className?: string;
477
- }
478
- declare const BasicModal: ({ isOpen, onOpenChange, trigger, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: BasicModalProps) => react_jsx_runtime.JSX.Element;
479
- interface InteractiveGlassModalProps {
480
- isOpen?: boolean;
481
- onOpenChange?: (open: boolean) => void;
482
- trigger?: React$1.ReactNode;
483
- icon?: React$1.ReactNode;
484
- title?: string;
485
- description?: string;
486
- children?: React$1.ReactNode;
487
- confirmText?: string;
488
- cancelText?: string;
489
- onConfirm?: () => void;
490
- onCancel?: () => void;
491
- className?: string;
492
- }
493
- declare const InteractiveGlassModal: ({ isOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: InteractiveGlassModalProps) => react_jsx_runtime.JSX.Element;
494
- interface DangerModalProps {
495
- isOpen?: boolean;
496
- onOpenChange?: (open: boolean) => void;
497
- trigger?: React$1.ReactNode;
498
- icon?: React$1.ReactNode;
499
- title?: string;
500
- description?: string;
501
- children?: React$1.ReactNode;
502
- confirmText?: string;
503
- cancelText?: string;
504
- onConfirm?: () => void;
505
- onCancel?: () => void;
506
- className?: string;
507
- }
508
- declare const DangerModal: ({ isOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: DangerModalProps) => react_jsx_runtime.JSX.Element;
509
- interface GlassModalProps {
510
- trigger?: React$1.ReactNode;
511
- title?: React$1.ReactNode;
512
- description?: React$1.ReactNode;
513
- children?: React$1.ReactNode;
514
- open?: boolean;
515
- onOpenChange?: (open: boolean) => void;
516
- }
517
- declare function GlassModal({ trigger, title, description, children, open, onOpenChange }: GlassModalProps): react_jsx_runtime.JSX.Element;
518
- interface AlertModalProps {
519
- trigger?: React$1.ReactNode;
520
- title?: string;
521
- description?: string;
522
- onConfirm?: () => void;
523
- onCancel?: () => void;
524
- confirmText?: string;
525
- cancelText?: string;
526
- children?: React$1.ReactNode;
527
- open?: boolean;
528
- onOpenChange?: (open: boolean) => void;
529
- }
530
- declare function AlertModal({ trigger, title, description, onConfirm, onCancel, confirmText, cancelText, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
531
- interface SuccessModalProps {
532
- trigger?: React$1.ReactNode;
533
- title?: string;
534
- description?: string;
535
- children?: React$1.ReactNode;
536
- open?: boolean;
537
- onOpenChange?: (open: boolean) => void;
538
- confirmText?: string;
539
- onConfirm?: () => void;
540
- }
541
- declare function SuccessModal({ trigger, title, description, children, open, onOpenChange, confirmText, onConfirm }: SuccessModalProps): react_jsx_runtime.JSX.Element;
542
- interface CommandPaletteModalProps {
543
- trigger: React$1.ReactNode;
544
- open?: boolean;
545
- onOpenChange?: (open: boolean) => void;
546
- }
547
- declare function CommandPaletteModal({ trigger, open, onOpenChange }: CommandPaletteModalProps): react_jsx_runtime.JSX.Element;
548
- interface BottomSheetSimulatedProps {
549
- trigger: React$1.ReactNode;
550
- children?: React$1.ReactNode;
551
- open?: boolean;
552
- onOpenChange?: (open: boolean) => void;
553
- }
554
- declare function BottomSheetSimulated({ trigger, children, open, onOpenChange }: BottomSheetSimulatedProps): react_jsx_runtime.JSX.Element;
555
-
556
363
  declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
557
364
  declare const TooltipRoot: React$1.FC<TooltipPrimitive.TooltipProps>;
558
365
  declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -582,7 +389,7 @@ interface TooltipProps {
582
389
  */
583
390
  variant?: "default" | "dark" | "light";
584
391
  }
585
- declare function Tooltip({ content, children, side, delay, variant, }: TooltipProps): react_jsx_runtime.JSX.Element;
392
+ declare function Tooltip({ content, children, side, delay, variant, }: TooltipProps): React$1.JSX.Element;
586
393
 
587
394
  interface SimpleTooltipProps {
588
395
  content: React$1.ReactNode;
@@ -591,17 +398,24 @@ interface SimpleTooltipProps {
591
398
  delay?: number;
592
399
  variant?: "default" | "dark" | "light";
593
400
  }
594
- declare function SimpleTooltip({ content, position, children, delay, variant, }: SimpleTooltipProps): react_jsx_runtime.JSX.Element;
401
+ declare function SimpleTooltip({ content, position, children, delay, variant, }: SimpleTooltipProps): React$1.JSX.Element;
595
402
  interface RichTooltipProps {
596
403
  content: React$1.ReactNode;
597
404
  children: React$1.ReactNode;
598
405
  delay?: number;
599
406
  }
600
- declare function RichTooltip({ content, children, delay, }: RichTooltipProps): react_jsx_runtime.JSX.Element;
407
+ declare function RichTooltip({ content, children, delay, }: RichTooltipProps): React$1.JSX.Element;
601
408
 
602
409
  declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
603
410
 
604
- declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitive.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
411
+ interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> {
412
+ /**
413
+ * The visual variant of the switch
414
+ * @default "default"
415
+ */
416
+ variant?: "default" | "neon";
417
+ }
418
+ declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
605
419
 
606
420
  declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
607
421
  declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -615,41 +429,103 @@ declare const alertVariants: (props?: ({
615
429
  variant?: "default" | "destructive" | "neon" | "glass" | "gradient" | "banner" | "success" | "warning" | "info" | "floating" | "minimal" | "cyberpunk" | null | undefined;
616
430
  } & class_variance_authority_types.ClassProp) | undefined) => string;
617
431
  interface AlertProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'>, VariantProps<typeof alertVariants> {
432
+ /**
433
+ * Описание для animate
434
+ * @default undefined
435
+ */
618
436
  animate?: boolean;
437
+ /**
438
+ * Описание для title
439
+ * @default undefined
440
+ */
619
441
  title?: React$1.ReactNode;
442
+ /**
443
+ * Описание для description
444
+ * @default undefined
445
+ */
620
446
  description?: React$1.ReactNode;
447
+ /**
448
+ * Описание для icon
449
+ * @default undefined
450
+ */
621
451
  icon?: React$1.ReactNode;
452
+ /**
453
+ * Описание для dismissible
454
+ * @default undefined
455
+ */
622
456
  dismissible?: boolean;
457
+ /**
458
+ * Описание для onDismiss
459
+ * @default undefined
460
+ */
623
461
  onDismiss?: () => void;
462
+ /**
463
+ * Описание для actionText
464
+ * @default undefined
465
+ */
624
466
  actionText?: string;
467
+ /**
468
+ * Описание для onAction
469
+ * @default undefined
470
+ */
625
471
  onAction?: () => void;
626
472
  }
627
473
  declare const Alert: React$1.ForwardRefExoticComponent<AlertProps & React$1.RefAttributes<HTMLDivElement>>;
628
474
  declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
629
475
  declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
630
- declare const ToastAlertWrapper: ({ children, className, title, description, time }: any) => react_jsx_runtime.JSX.Element;
476
+ declare const ToastAlertWrapper: ({ children, className, title, description, time }: any) => React$1.JSX.Element;
631
477
  declare const CookieAlert: ({ onAccept, onDecline }: {
632
478
  onAccept?: () => void;
633
479
  onDecline?: () => void;
634
- }) => react_jsx_runtime.JSX.Element | null;
635
- declare const OfflineBanner: () => react_jsx_runtime.JSX.Element;
636
- declare const RateLimitAlert: () => react_jsx_runtime.JSX.Element;
637
-
638
- declare const CyberAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
639
- declare const SoftAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
640
- declare const MinimalAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
641
- declare const LeftBorderAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
642
- declare const IconTopAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
643
- declare const SolidAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
644
- declare const BannerAlert: ({ message, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
645
- declare const NeonAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
646
- declare const GlassAlert: ({ title, description, variant, ...props }: any) => react_jsx_runtime.JSX.Element;
647
- declare const DismissibleAlert: ({ variant, title, description, ...props }: any) => react_jsx_runtime.JSX.Element;
480
+ }) => React$1.JSX.Element | null;
481
+ declare const OfflineBanner: () => React$1.JSX.Element;
482
+ declare const RateLimitAlert: () => React$1.JSX.Element;
483
+
484
+ /**
485
+ * @deprecated Use the unified `<Alert variant="cyberpunk">` instead.
486
+ */
487
+ declare const CyberAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
488
+ /**
489
+ * @deprecated Use `<Alert variant="success">` or `<Alert variant="info">` instead.
490
+ */
491
+ declare const SoftAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
492
+ /**
493
+ * @deprecated Use `<Alert variant="minimal">` instead.
494
+ */
495
+ declare const MinimalAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
496
+ /**
497
+ * @deprecated Use `<Alert className="border-l-4 ...">` instead.
498
+ */
499
+ declare const LeftBorderAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
500
+ /**
501
+ * @deprecated Use custom styled layouts or standard elements instead.
502
+ */
503
+ declare const IconTopAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
504
+ /**
505
+ * @deprecated Use standard tailwind background colors on unified `<Alert>` instead.
506
+ */
507
+ declare const SolidAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
508
+ /**
509
+ * @deprecated Use `<Alert variant="banner">` instead.
510
+ */
511
+ declare const BannerAlert: ({ message, variant, ...props }: any) => React$1.JSX.Element;
512
+ /**
513
+ * @deprecated Use `<Alert variant="neon">` instead.
514
+ */
515
+ declare const NeonAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
516
+ /**
517
+ * @deprecated Use `<Alert variant="glass">` instead.
518
+ */
519
+ declare const GlassAlert: ({ title, description, variant, ...props }: any) => React$1.JSX.Element;
520
+ /**
521
+ * @deprecated Use `<Alert dismissible={true}>` instead.
522
+ */
523
+ declare const DismissibleAlert: ({ variant, title, description, ...props }: any) => React$1.JSX.Element;
648
524
 
649
525
  type ToasterProps = React.ComponentProps<typeof Toaster$1>;
650
- declare function Toaster({ ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
526
+ declare function Toaster({ ...props }: ToasterProps): React$1.JSX.Element;
651
527
 
652
- interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
528
+ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement> {
653
529
  /**
654
530
  * The width of the skeleton
655
531
  */
@@ -674,9 +550,9 @@ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
674
550
  */
675
551
  animated?: boolean;
676
552
  }
677
- declare function Skeleton({ className, width, height, variant, count, animated, style, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
553
+ declare function Skeleton({ className, width, height, variant, count, animated, style, ...props }: SkeletonProps): React$1.JSX.Element;
678
554
 
679
- interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
555
+ interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
680
556
  /**
681
557
  * The current value of the progress bar
682
558
  * @default 0
@@ -697,13 +573,18 @@ interface ProgressProps extends React$1.HTMLAttributes<HTMLDivElement> {
697
573
  * @default false
698
574
  */
699
575
  showLabel?: boolean;
576
+ /**
577
+ * Custom label text shown next to the percentage
578
+ * @default "Progress"
579
+ */
580
+ progressLabel?: string;
700
581
  /**
701
582
  * The size of the progress bar
702
583
  * @default "default"
703
584
  */
704
585
  size?: "default" | "sm" | "lg";
705
586
  /**
706
- * Whether the progress bar is animated
587
+ * Whether the progress bar fill animates smoothly
707
588
  * @default true
708
589
  */
709
590
  animated?: boolean;
@@ -723,9 +604,9 @@ interface CircularProgressCardProps {
723
604
  unit?: string;
724
605
  className?: string;
725
606
  }
726
- declare const CircularProgressCard: ({ value, max, title, label, unit, className, }: CircularProgressCardProps) => react_jsx_runtime.JSX.Element;
607
+ declare const CircularProgressCard: ({ value, max, title, label, unit, className, }: CircularProgressCardProps) => React$1.JSX.Element;
727
608
 
728
- interface SliderProps {
609
+ interface SliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>, "value" | "defaultValue" | "onChange"> {
729
610
  /**
730
611
  * The minimum value
731
612
  * @default 0
@@ -741,6 +622,10 @@ interface SliderProps {
741
622
  * @default 1
742
623
  */
743
624
  step?: number;
625
+ /**
626
+ * The default initial value for uncontrolled usage
627
+ */
628
+ defaultValue?: number;
744
629
  /**
745
630
  * The current value
746
631
  */
@@ -774,131 +659,179 @@ interface RangeSliderInputProps {
774
659
  className?: string;
775
660
  onChange?: (value: number[]) => void;
776
661
  }
777
- declare function RangeSliderInput({ defaultValue, min, max, step, className, onChange, }: RangeSliderInputProps): react_jsx_runtime.JSX.Element;
662
+ declare function RangeSliderInput({ defaultValue, min, max, step, className, onChange, }: RangeSliderInputProps): React$1.JSX.Element;
778
663
 
779
664
  interface LoaderProps {
665
+ /**
666
+ * Описание для variant
667
+ * @default undefined
668
+ */
780
669
  variant?: "dots" | "ring" | "bars" | "pulse" | "spinner" | "wifi" | "hourglass" | "heartbeat" | "box" | "clock" | "battery" | "square-spin" | "text" | "progress-ring" | "skeleton-card" | "shimmer-block";
781
- size?: "sm" | "md" | "lg" | number;
670
+ /**
671
+ * Описание для size
672
+ * @default undefined
673
+ */
674
+ size?: "sm" | "md" | "lg" | number;
675
+ /**
676
+ * Описание для color
677
+ * @default undefined
678
+ */
782
679
  color?: string;
680
+ /**
681
+ * Описание для text
682
+ * @default undefined
683
+ */
783
684
  text?: string;
685
+ /**
686
+ * Описание для progress
687
+ * @default undefined
688
+ */
784
689
  progress?: number;
690
+ /**
691
+ * Описание для strokeWidth
692
+ * @default undefined
693
+ */
785
694
  strokeWidth?: number;
695
+ /**
696
+ * Описание для className
697
+ * @default undefined
698
+ */
786
699
  className?: string;
787
700
  }
788
701
  declare const WifiLoader: ({ className, color, size }: {
789
702
  className?: string;
790
703
  color?: string;
791
704
  size?: "sm" | "md" | "lg" | number;
792
- }) => react_jsx_runtime.JSX.Element;
705
+ }) => React$1.JSX.Element;
793
706
  declare const HourglassLoader: ({ className, color, size }: {
794
707
  className?: string;
795
708
  color?: string;
796
709
  size?: "sm" | "md" | "lg" | number;
797
- }) => react_jsx_runtime.JSX.Element;
710
+ }) => React$1.JSX.Element;
798
711
  declare const HeartbeatLoader: ({ className, color, size }: {
799
712
  className?: string;
800
713
  color?: string;
801
714
  size?: "sm" | "md" | "lg" | number;
802
- }) => react_jsx_runtime.JSX.Element;
715
+ }) => React$1.JSX.Element;
803
716
  declare const BoxLoader: ({ className, color, size }: {
804
717
  className?: string;
805
718
  color?: string;
806
719
  size?: "sm" | "md" | "lg" | number;
807
- }) => react_jsx_runtime.JSX.Element;
720
+ }) => React$1.JSX.Element;
808
721
  declare const BouncingBalls: ({ className, color, size }: {
809
722
  className?: string;
810
723
  color?: string;
811
724
  size?: "sm" | "md" | "lg" | number;
812
- }) => react_jsx_runtime.JSX.Element;
725
+ }) => React$1.JSX.Element;
813
726
  declare const GlowRingLoader: ({ className, color, size }: {
814
727
  className?: string;
815
728
  color?: string;
816
729
  size?: "sm" | "md" | "lg" | number;
817
- }) => react_jsx_runtime.JSX.Element;
730
+ }) => React$1.JSX.Element;
818
731
  declare const LineScaleLoader: ({ className, color, size }: {
819
732
  className?: string;
820
733
  color?: string;
821
734
  size?: "sm" | "md" | "lg" | number;
822
- }) => react_jsx_runtime.JSX.Element;
735
+ }) => React$1.JSX.Element;
823
736
  declare const ClockLoader: ({ className, color, size }: {
824
737
  className?: string;
825
738
  color?: string;
826
739
  size?: "sm" | "md" | "lg" | number;
827
- }) => react_jsx_runtime.JSX.Element;
740
+ }) => React$1.JSX.Element;
828
741
  declare const BatteryLoader: ({ className, color, size }: {
829
742
  className?: string;
830
743
  color?: string;
831
744
  size?: "sm" | "md" | "lg" | number;
832
- }) => react_jsx_runtime.JSX.Element;
745
+ }) => React$1.JSX.Element;
833
746
  declare const SquareSpinLoader: ({ className, color, size }: {
834
747
  className?: string;
835
748
  color?: string;
836
749
  size?: "sm" | "md" | "lg" | number;
837
- }) => react_jsx_runtime.JSX.Element;
750
+ }) => React$1.JSX.Element;
838
751
  declare function SpinnerLoader({ className, size, color }: {
839
752
  className?: string;
840
753
  size?: number;
841
754
  color?: string;
842
- }): react_jsx_runtime.JSX.Element;
755
+ }): React$1.JSX.Element;
843
756
  declare function DotsLoader({ className, color, size }: {
844
757
  className?: string;
845
758
  color?: string;
846
759
  size?: "sm" | "md" | "lg" | number;
847
- }): react_jsx_runtime.JSX.Element;
760
+ }): React$1.JSX.Element;
848
761
  declare function PulseLoader({ className, color, size }: {
849
762
  className?: string;
850
763
  color?: string;
851
764
  size?: "sm" | "md" | "lg" | number;
852
- }): react_jsx_runtime.JSX.Element;
765
+ }): React$1.JSX.Element;
853
766
  declare function BarLoader({ className, color, size }: {
854
767
  className?: string;
855
768
  color?: string;
856
769
  size?: "sm" | "md" | "lg" | number;
857
- }): react_jsx_runtime.JSX.Element;
770
+ }): React$1.JSX.Element;
858
771
  declare function CircleLoader({ className, size, color }: {
859
772
  className?: string;
860
773
  size?: number;
861
774
  color?: string;
862
- }): react_jsx_runtime.JSX.Element;
775
+ }): React$1.JSX.Element;
863
776
  declare function RingLoader({ className, color, size }: {
864
777
  className?: string;
865
778
  color?: string;
866
779
  size?: "sm" | "md" | "lg" | number;
867
- }): react_jsx_runtime.JSX.Element;
780
+ }): React$1.JSX.Element;
868
781
  declare function TextLoader({ text, className, color }: {
869
782
  text?: string;
870
783
  className?: string;
871
784
  color?: string;
872
- }): react_jsx_runtime.JSX.Element;
785
+ }): React$1.JSX.Element;
873
786
  declare function ProgressRing({ progress, size, strokeWidth, className, color }: {
874
787
  progress?: number;
875
788
  size?: number;
876
789
  strokeWidth?: number;
877
790
  className?: string;
878
791
  color?: string;
879
- }): react_jsx_runtime.JSX.Element;
792
+ }): React$1.JSX.Element;
880
793
  declare function SkeletonCard({ className }: {
881
794
  className?: string;
882
- }): react_jsx_runtime.JSX.Element;
795
+ }): React$1.JSX.Element;
883
796
  declare function ShimmerBlock({ className }: {
884
797
  className?: string;
885
- }): react_jsx_runtime.JSX.Element;
886
- declare function Loader({ variant, size, color, text, progress, strokeWidth, className, }: LoaderProps): react_jsx_runtime.JSX.Element;
798
+ }): React$1.JSX.Element;
799
+ declare function Loader({ variant, size, color, text, progress, strokeWidth, className, }: LoaderProps): React$1.JSX.Element;
887
800
 
888
801
  interface BreadcrumbProps extends React$1.HTMLAttributes<HTMLElement> {
802
+ /**
803
+ * Описание для items
804
+ * @default undefined
805
+ */
889
806
  items: {
890
807
  label: string;
891
808
  href?: string;
892
809
  }[];
810
+ /**
811
+ * Описание для separator
812
+ * @default undefined
813
+ */
893
814
  separator?: React$1.ReactNode;
894
815
  }
895
- declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
816
+ declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): React$1.JSX.Element;
896
817
  interface PaginationProps extends React$1.HTMLAttributes<HTMLElement> {
818
+ /**
819
+ * Описание для totalPages
820
+ * @default undefined
821
+ */
897
822
  totalPages: number;
823
+ /**
824
+ * Описание для currentPage
825
+ * @default undefined
826
+ */
898
827
  currentPage: number;
828
+ /**
829
+ * Описание для onPageChange
830
+ * @default undefined
831
+ */
899
832
  onPageChange?: (page: number) => void;
900
833
  }
901
- declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
834
+ declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): React$1.JSX.Element;
902
835
  interface Step {
903
836
  title: string;
904
837
  description?: string;
@@ -907,17 +840,17 @@ interface Step {
907
840
  declare function Steps({ items, className }: {
908
841
  items: Step[];
909
842
  className?: string;
910
- }): react_jsx_runtime.JSX.Element;
911
- declare const SimpleNavbar: () => react_jsx_runtime.JSX.Element;
912
- declare const CenteredNavbar: () => react_jsx_runtime.JSX.Element;
913
- declare const GlassNavbar: () => react_jsx_runtime.JSX.Element;
914
- declare const FloatingNavbar: () => react_jsx_runtime.JSX.Element;
915
- declare const SidebarMenu: () => react_jsx_runtime.JSX.Element;
916
- declare const BottomNav: () => react_jsx_runtime.JSX.Element;
917
- declare const BreadcrumbTrail: () => react_jsx_runtime.JSX.Element;
918
- declare const StepIndicator: ({ current }: any) => react_jsx_runtime.JSX.Element;
919
- declare const TabMenu: () => react_jsx_runtime.JSX.Element;
920
- declare const DropdownMenuVisual: () => react_jsx_runtime.JSX.Element;
843
+ }): React$1.JSX.Element;
844
+ declare const SimpleNavbar: () => React$1.JSX.Element;
845
+ declare const CenteredNavbar: () => React$1.JSX.Element;
846
+ declare const GlassNavbar: () => React$1.JSX.Element;
847
+ declare const FloatingNavbar: () => React$1.JSX.Element;
848
+ declare const SidebarMenu: () => React$1.JSX.Element;
849
+ declare const BottomNav: () => React$1.JSX.Element;
850
+ declare const BreadcrumbTrail: () => React$1.JSX.Element;
851
+ declare const StepIndicator: ({ current }: any) => React$1.JSX.Element;
852
+ declare const TabMenu: () => React$1.JSX.Element;
853
+ declare const DropdownMenuVisual: () => React$1.JSX.Element;
921
854
 
922
855
  interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
923
856
  }
@@ -931,50 +864,90 @@ declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & Re
931
864
  declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
932
865
 
933
866
  interface BaseAnimationProps {
867
+ /**
868
+ * Описание для children
869
+ * @default undefined
870
+ */
934
871
  children: React$1.ReactNode;
872
+ /**
873
+ * Описание для delay
874
+ * @default undefined
875
+ */
935
876
  delay?: number;
877
+ /**
878
+ * Описание для duration
879
+ * @default undefined
880
+ */
936
881
  duration?: number;
937
882
  }
938
- declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
939
- declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
940
- declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
941
- declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
942
- declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
943
- declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
944
- declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) => react_jsx_runtime.JSX.Element;
945
- declare const Flip: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
946
- declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
883
+ declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
884
+ declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
885
+ declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
886
+ declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
887
+ declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
888
+ declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
889
+ declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) => React$1.JSX.Element;
890
+ declare const Flip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
891
+ declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
947
892
  declare const PulseAnim: ({ children }: {
948
893
  children: React$1.ReactNode;
949
- }) => react_jsx_runtime.JSX.Element;
894
+ }) => React$1.JSX.Element;
950
895
  declare const Float: ({ children }: {
951
896
  children: React$1.ReactNode;
952
- }) => react_jsx_runtime.JSX.Element;
897
+ }) => React$1.JSX.Element;
953
898
  declare const WiggleHover: ({ children }: {
954
899
  children: React$1.ReactNode;
955
- }) => react_jsx_runtime.JSX.Element;
900
+ }) => React$1.JSX.Element;
956
901
  declare const Heartbeat: ({ children }: {
957
902
  children: React$1.ReactNode;
958
- }) => react_jsx_runtime.JSX.Element;
959
- declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
903
+ }) => React$1.JSX.Element;
904
+ declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
960
905
  declare const StaggerContainer: ({ children, delayChildren, staggerChildren }: {
961
906
  children: React$1.ReactNode;
962
907
  delayChildren?: number;
963
908
  staggerChildren?: number;
964
- }) => react_jsx_runtime.JSX.Element;
909
+ }) => React$1.JSX.Element;
965
910
  declare const StaggerItem: ({ children }: {
966
911
  children: React$1.ReactNode;
967
- }) => react_jsx_runtime.JSX.Element;
912
+ }) => React$1.JSX.Element;
968
913
  interface TypingAnimationProps {
914
+ /**
915
+ * Описание для texts
916
+ * @default undefined
917
+ */
969
918
  texts: string[];
919
+ /**
920
+ * Описание для speed
921
+ * @default undefined
922
+ */
970
923
  speed?: number;
924
+ /**
925
+ * Описание для deleteSpeed
926
+ * @default undefined
927
+ */
971
928
  deleteSpeed?: number;
929
+ /**
930
+ * Описание для pauseDuration
931
+ * @default undefined
932
+ */
972
933
  pauseDuration?: number;
934
+ /**
935
+ * Описание для loop
936
+ * @default undefined
937
+ */
973
938
  loop?: boolean;
939
+ /**
940
+ * Описание для cursor
941
+ * @default undefined
942
+ */
974
943
  cursor?: boolean;
944
+ /**
945
+ * Описание для className
946
+ * @default undefined
947
+ */
975
948
  className?: string;
976
949
  }
977
- declare function TypingAnimation({ texts, speed, deleteSpeed, pauseDuration, loop, cursor, className, }: TypingAnimationProps): react_jsx_runtime.JSX.Element;
950
+ declare function TypingAnimation({ texts, speed, deleteSpeed, pauseDuration, loop, cursor, className, }: TypingAnimationProps): React$1.JSX.Element;
978
951
 
979
952
  /**
980
953
  * Props for the BlurFade component
@@ -1109,27 +1082,32 @@ interface AnimatedNumberProps {
1109
1082
  duration?: number;
1110
1083
  formatFn?: (v: number) => string;
1111
1084
  }
1112
- declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): react_jsx_runtime.JSX.Element;
1085
+ declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): React$1.JSX.Element;
1113
1086
 
1114
- /**
1115
- * Props for the Rating component
1116
- */
1117
- interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
1087
+ type RatingVariant = "amber" | "primary" | "emerald" | "rose" | "cyan";
1088
+ type RatingIconType = "star" | "heart" | "thumb" | "flame" | "trophy" | "smile";
1089
+ type RatingSize = "xs" | "sm" | "md" | "lg" | "xl";
1090
+ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
1118
1091
  /**
1119
- * Current rating value
1092
+ * Controlled rating score value
1120
1093
  */
1121
- value: number;
1094
+ value?: number;
1095
+ /**
1096
+ * Default initial rating value for uncontrolled usage
1097
+ * @default 0
1098
+ */
1099
+ defaultValue?: number;
1122
1100
  /**
1123
- * Maximum rating count
1101
+ * Maximum rating score count
1124
1102
  * @default 5
1125
1103
  */
1126
1104
  max?: number;
1127
1105
  /**
1128
- * Callback fired when rating value is clicked
1106
+ * Callback fired when rating value changes
1129
1107
  */
1130
1108
  onChange?: (value: number) => void;
1131
1109
  /**
1132
- * If true, rating is display-only
1110
+ * If true, rating is display-only and non-interactive
1133
1111
  * @default false
1134
1112
  */
1135
1113
  readonly?: boolean;
@@ -1137,21 +1115,60 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
1137
1115
  * Size of rating icons
1138
1116
  * @default "md"
1139
1117
  */
1140
- size?: "sm" | "md" | "lg";
1118
+ size?: RatingSize;
1141
1119
  /**
1142
1120
  * Visual icon choice
1143
1121
  * @default "star"
1144
1122
  */
1145
- icon?: "star" | "heart" | "thumb";
1123
+ icon?: RatingIconType;
1124
+ /**
1125
+ * Color theme variant
1126
+ * @default "amber"
1127
+ */
1128
+ variant?: RatingVariant;
1129
+ /**
1130
+ * Allow half-step (0.5) fractional rating precision
1131
+ * @default false
1132
+ */
1133
+ allowHalf?: boolean;
1134
+ /**
1135
+ * Display score number label alongside the rating icons
1136
+ * @default false
1137
+ */
1138
+ showScore?: boolean;
1139
+ /**
1140
+ * Array of tooltip labels corresponding to each step
1141
+ * (e.g. ["Poor", "Fair", "Good", "Very Good", "Exceptional"])
1142
+ */
1143
+ tooltips?: string[];
1146
1144
  /**
1147
1145
  * Additional CSS classes
1148
1146
  */
1149
1147
  className?: string;
1150
1148
  }
1151
1149
  /**
1152
- * Rating component provides a premium selection input for score ratings (Stars, Hearts, Thumbs).
1150
+ * Rating component provides a luxury interactive scoring component supporting stars,
1151
+ * hearts, flames, trophies, half-star precision, color themes, and tooltips.
1153
1152
  */
1154
1153
  declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
1154
+ interface RatingBreakdownProps extends React$1.HTMLAttributes<HTMLDivElement> {
1155
+ rating: number;
1156
+ totalReviews: number;
1157
+ distribution?: Record<number, number>;
1158
+ className?: string;
1159
+ }
1160
+ declare function RatingBreakdown({ rating, totalReviews, distribution, className, ...props }: RatingBreakdownProps): React$1.JSX.Element;
1161
+ interface ReviewCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1162
+ author: string;
1163
+ avatarUrl?: string;
1164
+ rating: number;
1165
+ date: string;
1166
+ title?: string;
1167
+ content: string;
1168
+ verified?: boolean;
1169
+ className?: string;
1170
+ }
1171
+ declare function ReviewCard({ author, avatarUrl, rating, date, title, content, verified, className, ...props }: ReviewCardProps): React$1.JSX.Element;
1155
1172
 
1156
1173
  /**
1157
1174
  * Props for the FileUpload component
@@ -1194,11 +1211,35 @@ declare const tableContainerVariants: (props?: ({
1194
1211
  variant?: "default" | "neon" | "glass" | "gradient" | "minimal" | "cyberpunk" | "aurora" | null | undefined;
1195
1212
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1196
1213
  interface TableProps extends React$1.HTMLAttributes<HTMLTableElement>, VariantProps<typeof tableContainerVariants> {
1214
+ /**
1215
+ * Описание для density
1216
+ * @default undefined
1217
+ */
1197
1218
  density?: 'compact' | 'normal' | 'spacious';
1219
+ /**
1220
+ * Описание для hoverable
1221
+ * @default undefined
1222
+ */
1198
1223
  hoverable?: boolean;
1224
+ /**
1225
+ * Описание для striped
1226
+ * @default undefined
1227
+ */
1199
1228
  striped?: boolean;
1229
+ /**
1230
+ * Описание для bordered
1231
+ * @default undefined
1232
+ */
1200
1233
  bordered?: boolean;
1234
+ /**
1235
+ * Описание для animateRows
1236
+ * @default undefined
1237
+ */
1201
1238
  animateRows?: boolean;
1239
+ /**
1240
+ * Описание для containerClassName
1241
+ * @default undefined
1242
+ */
1202
1243
  containerClassName?: string;
1203
1244
  }
1204
1245
  declare const Table: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>>;
@@ -1206,6 +1247,10 @@ declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
1206
1247
  declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1207
1248
  declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1208
1249
  interface TableRowProps extends React$1.HTMLAttributes<HTMLTableRowElement> {
1250
+ /**
1251
+ * Описание для index
1252
+ * @default undefined
1253
+ */
1209
1254
  index?: number;
1210
1255
  }
1211
1256
  declare const TableRow: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
@@ -1213,11 +1258,50 @@ declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttribu
1213
1258
  declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1214
1259
  declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1215
1260
  interface CustomizableTableProps extends TableProps {
1261
+ /**
1262
+ * Описание для headers
1263
+ * @default undefined
1264
+ */
1216
1265
  headers: string[];
1266
+ /**
1267
+ * Описание для rows
1268
+ * @default undefined
1269
+ */
1217
1270
  rows: React$1.ReactNode[][];
1271
+ /**
1272
+ * Описание для caption
1273
+ * @default undefined
1274
+ */
1218
1275
  caption?: string;
1219
1276
  }
1220
1277
  declare const CustomizableTable: React$1.FC<CustomizableTableProps>;
1278
+ interface DataTableColumn<T = any> {
1279
+ header: React$1.ReactNode;
1280
+ accessorKey?: keyof T | string;
1281
+ cell?: (item: T, index: number) => React$1.ReactNode;
1282
+ className?: string;
1283
+ }
1284
+ interface DataTableProps<T = any> extends TableProps {
1285
+ data?: T[];
1286
+ columns?: DataTableColumn<T>[];
1287
+ searchable?: boolean;
1288
+ searchPlaceholder?: string;
1289
+ searchKey?: keyof T | string;
1290
+ pagination?: boolean;
1291
+ pageSize?: number;
1292
+ emptyMessage?: string;
1293
+ children?: React$1.ReactNode;
1294
+ }
1295
+ declare function DataTable<T = any>({ data, columns, searchable, searchPlaceholder, searchKey, pagination, pageSize, emptyMessage, children, ...tableProps }: DataTableProps<T>): React$1.JSX.Element;
1296
+ declare const TableCompound: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>> & {
1297
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1298
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1299
+ Footer: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1300
+ Row: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
1301
+ Head: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1302
+ Cell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1303
+ Caption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1304
+ };
1221
1305
 
1222
1306
  /**
1223
1307
  * Representing a single step definition
@@ -1227,6 +1311,8 @@ interface StepItem {
1227
1311
  description?: string;
1228
1312
  icon?: React$1.ReactNode;
1229
1313
  }
1314
+ type StepperVariant = "default" | "circles" | "arrows";
1315
+ type StepperSize = "sm" | "md" | "lg";
1230
1316
  /**
1231
1317
  * Props for the Stepper component
1232
1318
  */
@@ -1248,14 +1334,23 @@ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
1248
1334
  * Style variant of the stepper
1249
1335
  * @default "default"
1250
1336
  */
1251
- variant?: "default" | "circles" | "arrows";
1337
+ variant?: StepperVariant;
1338
+ /**
1339
+ * Sizing scale of the stepper indicators
1340
+ * @default "md"
1341
+ */
1342
+ size?: StepperSize;
1343
+ /**
1344
+ * Callback fired when a step indicator is clicked
1345
+ */
1346
+ onStepClick?: (stepIndex: number) => void;
1252
1347
  /**
1253
1348
  * Additional CSS classes
1254
1349
  */
1255
1350
  className?: string;
1256
1351
  }
1257
1352
  /**
1258
- * Stepper component displays progress through a multi-step sequence with animations.
1353
+ * Stepper component displays progress through a multi-step sequence with smooth animations.
1259
1354
  */
1260
1355
  declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
1261
1356
 
@@ -1295,26 +1390,62 @@ interface CommandProps {
1295
1390
  */
1296
1391
  declare const Command: React$1.ForwardRefExoticComponent<CommandProps & React$1.RefAttributes<HTMLDivElement>>;
1297
1392
 
1298
- declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
1393
+ declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): React$1.JSX.Element;
1299
1394
  interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
1395
+ /**
1396
+ * Описание для limit
1397
+ * @default undefined
1398
+ */
1300
1399
  limit?: number;
1400
+ /**
1401
+ * Описание для items
1402
+ * @default undefined
1403
+ */
1301
1404
  items: {
1302
1405
  src?: string;
1303
1406
  fallback: string;
1304
1407
  }[];
1305
1408
  }
1306
- declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
1409
+ declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): React$1.JSX.Element;
1307
1410
  interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1411
+ /**
1412
+ * Описание для title
1413
+ * @default undefined
1414
+ */
1308
1415
  title: string;
1416
+ /**
1417
+ * Описание для value
1418
+ * @default undefined
1419
+ */
1309
1420
  value: string;
1421
+ /**
1422
+ * Описание для description
1423
+ * @default undefined
1424
+ */
1310
1425
  description?: string;
1426
+ /**
1427
+ * Описание для icon
1428
+ * @default undefined
1429
+ */
1311
1430
  icon?: LucideIcon;
1431
+ /**
1432
+ * Описание для trend
1433
+ * @default undefined
1434
+ */
1312
1435
  trend?: {
1436
+ /**
1437
+ * Описание для value
1438
+ * @default undefined
1439
+ */
1313
1440
  value: string;
1441
+ /**
1442
+ * Описание для positive
1443
+ * @default undefined
1444
+ */
1314
1445
  positive: boolean;
1315
1446
  };
1316
1447
  }
1317
- declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
1448
+ declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): React$1.JSX.Element;
1318
1449
  interface TimelineItem {
1319
1450
  title: string;
1320
1451
  description: string;
@@ -1324,313 +1455,674 @@ interface TimelineItem {
1324
1455
  declare function Timeline({ items, className }: {
1325
1456
  items: TimelineItem[];
1326
1457
  className?: string;
1327
- }): react_jsx_runtime.JSX.Element;
1458
+ }): React$1.JSX.Element;
1328
1459
  interface CodeBlockProps extends React$1.HTMLAttributes<HTMLDivElement> {
1460
+ /**
1461
+ * Описание для code
1462
+ * @default undefined
1463
+ */
1329
1464
  code: string;
1465
+ /**
1466
+ * Описание для language
1467
+ * @default undefined
1468
+ */
1330
1469
  language?: string;
1331
1470
  }
1332
- declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): react_jsx_runtime.JSX.Element;
1471
+ declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): React$1.JSX.Element;
1333
1472
  interface PricingCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1473
+ /**
1474
+ * Описание для title
1475
+ * @default undefined
1476
+ */
1334
1477
  title: string;
1478
+ /**
1479
+ * Описание для price
1480
+ * @default undefined
1481
+ */
1335
1482
  price: string;
1483
+ /**
1484
+ * Описание для description
1485
+ * @default undefined
1486
+ */
1336
1487
  description: string;
1488
+ /**
1489
+ * Описание для features
1490
+ * @default undefined
1491
+ */
1337
1492
  features: string[];
1493
+ /**
1494
+ * Описание для buttonText
1495
+ * @default undefined
1496
+ */
1338
1497
  buttonText?: string;
1498
+ /**
1499
+ * Описание для popular
1500
+ * @default undefined
1501
+ */
1339
1502
  popular?: boolean;
1340
1503
  }
1341
- declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): react_jsx_runtime.JSX.Element;
1504
+ declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): React$1.JSX.Element;
1342
1505
  interface DividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1343
1506
  /**
1344
1507
  * The orientation of the divider
1345
1508
  * @default "horizontal"
1346
1509
  */
1510
+ /**
1511
+ * Описание для orientation
1512
+ * @default undefined
1513
+ */
1347
1514
  orientation?: "horizontal" | "vertical";
1348
1515
  }
1349
- declare function Divider({ orientation, className, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
1350
-
1351
- declare const LoginFormPro: () => react_jsx_runtime.JSX.Element;
1352
- declare const RegisterFormPro: () => react_jsx_runtime.JSX.Element;
1353
- declare const PaymentFormPro: () => react_jsx_runtime.JSX.Element;
1354
- declare const ProfileSettingsForm: () => react_jsx_runtime.JSX.Element;
1355
- declare const SubscriptionForm: () => react_jsx_runtime.JSX.Element;
1356
- declare const ContactFormPro: () => react_jsx_runtime.JSX.Element;
1357
- declare const AdvancedSearchForm: () => react_jsx_runtime.JSX.Element;
1358
- declare const FileUploadForm: () => react_jsx_runtime.JSX.Element;
1359
- declare const FeedbackForm: () => react_jsx_runtime.JSX.Element;
1360
- declare const InviteUsersForm: () => react_jsx_runtime.JSX.Element;
1361
-
1362
- declare const ProductGallery: () => react_jsx_runtime.JSX.Element;
1363
- declare const AddToCartBar: () => react_jsx_runtime.JSX.Element;
1364
- declare const CartDrawerItem: () => react_jsx_runtime.JSX.Element | null;
1365
- declare const OrderSummaryCard: () => react_jsx_runtime.JSX.Element;
1366
- declare const PromoCodeInput: () => react_jsx_runtime.JSX.Element;
1367
- declare const ShippingAddressForm: () => react_jsx_runtime.JSX.Element;
1368
- declare const ProductReview: () => react_jsx_runtime.JSX.Element;
1369
- declare const ColorSelector: () => react_jsx_runtime.JSX.Element;
1370
- declare const SizeSelector: () => react_jsx_runtime.JSX.Element;
1371
- declare const CategoryCard: () => react_jsx_runtime.JSX.Element;
1372
-
1373
- declare const ChatBubbleUser: ({ message }: any) => react_jsx_runtime.JSX.Element;
1374
- declare const ChatBubbleAI: ({ message }: any) => react_jsx_runtime.JSX.Element;
1375
- declare const AIPromptInput: () => react_jsx_runtime.JSX.Element;
1376
- declare const ThinkingLoader: () => react_jsx_runtime.JSX.Element;
1377
- declare const ModelSelector: () => react_jsx_runtime.JSX.Element;
1378
- declare const GeneratedCodeBlock: () => react_jsx_runtime.JSX.Element;
1379
- declare const ChatHistorySidebar: () => react_jsx_runtime.JSX.Element;
1380
- declare const AIFeatureCard: () => react_jsx_runtime.JSX.Element;
1381
- declare const SuggestionChips: () => react_jsx_runtime.JSX.Element;
1382
- declare const VoiceInputPulse: () => react_jsx_runtime.JSX.Element;
1383
-
1384
- declare const DataTablePro: () => react_jsx_runtime.JSX.Element;
1385
- declare const InvoiceTable: () => react_jsx_runtime.JSX.Element;
1386
- declare const UserDirectoryTable: () => react_jsx_runtime.JSX.Element;
1387
- declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
1388
- declare const FileExplorerTable: () => react_jsx_runtime.JSX.Element;
1389
- declare const LeaderboardTable: () => react_jsx_runtime.JSX.Element;
1390
- declare const ProductInventoryTable: () => react_jsx_runtime.JSX.Element;
1391
- declare const ScheduleTable: () => react_jsx_runtime.JSX.Element;
1392
- declare const PricingComparisonTable: () => react_jsx_runtime.JSX.Element;
1393
- declare const CompactDataList: () => react_jsx_runtime.JSX.Element;
1394
-
1395
- declare const DashboardShell: ({ children }: any) => react_jsx_runtime.JSX.Element;
1396
- declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => react_jsx_runtime.JSX.Element;
1397
- declare const ActivityFeed: () => react_jsx_runtime.JSX.Element;
1398
- declare const ProgressWidget: () => react_jsx_runtime.JSX.Element;
1399
- declare const QuickActionsWidget: () => react_jsx_runtime.JSX.Element;
1400
- declare const TaskChecklist: () => react_jsx_runtime.JSX.Element;
1401
- declare const StorageWidget: () => react_jsx_runtime.JSX.Element;
1402
- declare const RevenueChartWidget: () => react_jsx_runtime.JSX.Element;
1403
- declare const RecentUsersWidget: () => react_jsx_runtime.JSX.Element;
1404
- declare const ServerStatusWidget: () => react_jsx_runtime.JSX.Element;
1405
-
1406
- declare const FilterBar: () => react_jsx_runtime.JSX.Element;
1407
- declare const LanguageSelector: () => react_jsx_runtime.JSX.Element;
1408
- declare const UserMenuDropdown: () => react_jsx_runtime.JSX.Element;
1409
- declare const TreeNavigation: () => react_jsx_runtime.JSX.Element;
1410
- declare const ContextActionBar: () => react_jsx_runtime.JSX.Element;
1411
- declare const PaginationPro: () => react_jsx_runtime.JSX.Element;
1412
-
1413
- declare const ConfettiSuccess: () => react_jsx_runtime.JSX.Element;
1414
- declare const ActionToast: () => react_jsx_runtime.JSX.Element;
1415
- declare const MultiStepProgress: ({ current }: any) => react_jsx_runtime.JSX.Element;
1416
- declare const SkeletonList: () => react_jsx_runtime.JSX.Element;
1417
- declare const EmptyStatePro: () => react_jsx_runtime.JSX.Element;
1418
- declare const TooltipForm: () => react_jsx_runtime.JSX.Element;
1419
- declare const PasswordStrengthMeter: ({ score }: any) => react_jsx_runtime.JSX.Element;
1420
- declare const UploadProgress: () => react_jsx_runtime.JSX.Element;
1421
-
1422
- declare const WaitlistForm: () => react_jsx_runtime.JSX.Element;
1423
- declare const PricingToggle: () => react_jsx_runtime.JSX.Element;
1424
- declare const FeatureShowcase: () => react_jsx_runtime.JSX.Element;
1425
- declare const TrustBanner: () => react_jsx_runtime.JSX.Element;
1426
- declare const ComparisonTableMock: () => react_jsx_runtime.JSX.Element;
1427
- declare const AnimatedHeroText: () => react_jsx_runtime.JSX.Element;
1428
- declare const StatCounter: () => react_jsx_runtime.JSX.Element;
1429
- declare const NewsletterSignup: () => react_jsx_runtime.JSX.Element;
1430
- declare const VideoModalVisual: () => react_jsx_runtime.JSX.Element;
1431
- declare const GradientCTABlock: () => react_jsx_runtime.JSX.Element;
1432
-
1433
- declare const ContactList: () => react_jsx_runtime.JSX.Element;
1434
- declare const NotificationList: () => react_jsx_runtime.JSX.Element;
1435
- declare const TimelineVertical: () => react_jsx_runtime.JSX.Element;
1436
- declare const StepList: () => react_jsx_runtime.JSX.Element;
1437
- declare const FAQAccordionList: () => react_jsx_runtime.JSX.Element;
1438
- declare const FileDownloadList: () => react_jsx_runtime.JSX.Element;
1439
- declare const MessageList: () => react_jsx_runtime.JSX.Element;
1440
- declare const JobBoardList: () => react_jsx_runtime.JSX.Element;
1441
- declare const EventScheduleList: () => react_jsx_runtime.JSX.Element;
1442
- declare const RecentCommentsList: () => react_jsx_runtime.JSX.Element;
1443
-
1444
- declare const SplitScreenLayout: () => react_jsx_runtime.JSX.Element;
1445
- declare const AuthenticationLayout: () => react_jsx_runtime.JSX.Element;
1446
- declare const SidebarLayout: () => react_jsx_runtime.JSX.Element;
1447
- declare const DashboardGridLayout: () => react_jsx_runtime.JSX.Element;
1448
- declare const BentoGridVisual: () => react_jsx_runtime.JSX.Element;
1449
- declare const KanbanBoardVisual: () => react_jsx_runtime.JSX.Element;
1450
- declare const ChatLayoutVisual: () => react_jsx_runtime.JSX.Element;
1451
- declare const FeedLayout: () => react_jsx_runtime.JSX.Element;
1452
- declare const DocumentationLayout: () => react_jsx_runtime.JSX.Element;
1453
- declare const HeaderFooterLayout: () => react_jsx_runtime.JSX.Element;
1454
-
1455
- declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1516
+ declare function Divider({ orientation, className, ...props }: DividerProps): React$1.JSX.Element;
1517
+
1518
+ type AuroraVariant = 'aurora' | 'ocean' | 'sunset' | 'forest' | 'cyber' | 'gold' | 'mono';
1519
+ type AuroraSpeed = 'slow' | 'normal' | 'fast';
1520
+ type AuroraGlow = 'subtle' | 'medium' | 'strong' | 'none';
1521
+ type AuroraRadius = 'sm' | 'md' | 'lg' | 'xl';
1522
+ type AuroraAnimation = 'flow' | 'wave' | 'pulse';
1523
+ interface AuroraBorderCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1524
+ variant?: AuroraVariant;
1525
+ speed?: AuroraSpeed;
1526
+ glow?: AuroraGlow;
1527
+ borderWidth?: 1 | 2 | 3 | number;
1528
+ radius?: AuroraRadius;
1529
+ animation?: AuroraAnimation;
1530
+ title?: string;
1531
+ subtitle?: string;
1532
+ description?: string;
1533
+ badgeText?: string;
1534
+ buttonText?: string;
1535
+ buttonHref?: string;
1536
+ onButtonClick?: () => void;
1537
+ children?: React$1.ReactNode;
1538
+ }
1539
+ /**
1540
+ * AuroraBorderCard Component
1541
+ *
1542
+ * Displays a permanent visible border with a single, continuous traveling Aurora snake wave.
1543
+ * Crisp and luminous on both Light and Dark themes.
1544
+ */
1545
+ declare const AuroraBorderCard: React$1.ForwardRefExoticComponent<AuroraBorderCardProps & React$1.RefAttributes<HTMLDivElement>>;
1546
+
1547
+ interface AIModelOption {
1548
+ id: string;
1549
+ name: string;
1550
+ badge?: string;
1551
+ icon?: React$1.ElementType;
1552
+ }
1553
+ interface AttachedFile {
1554
+ id: string;
1555
+ name: string;
1556
+ size?: string;
1557
+ type?: 'image' | 'file' | 'code';
1558
+ }
1559
+ interface AiPromptInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onSubmit'> {
1560
+ /**
1561
+ * Visual theme variant
1562
+ * @default "default"
1563
+ */
1564
+ variant?: 'default' | 'glow' | 'aurora' | 'glass' | 'minimal';
1565
+ /**
1566
+ * Dimension scale
1567
+ * @default "md"
1568
+ */
1569
+ size?: 'sm' | 'md' | 'lg';
1570
+ /**
1571
+ * Text prompt value (controlled)
1572
+ */
1573
+ value?: string;
1574
+ /**
1575
+ * Default text prompt value (uncontrolled)
1576
+ */
1577
+ defaultValue?: string;
1578
+ /**
1579
+ * Callback fired when text changes
1580
+ */
1581
+ onChange?: (value: string) => void;
1582
+ /**
1583
+ * Callback fired when prompt is submitted (via button or Enter key)
1584
+ */
1585
+ onSubmit?: (prompt: string, options?: {
1586
+ model?: string;
1587
+ webSearch?: boolean;
1588
+ files?: AttachedFile[];
1589
+ }) => void;
1590
+ /**
1591
+ * Textarea placeholder text
1592
+ * @default "Ask anything or describe what you want to build..."
1593
+ */
1594
+ placeholder?: string;
1595
+ /**
1596
+ * Whether the AI is currently generating a response (switches Send to Stop button)
1597
+ * @default false
1598
+ */
1599
+ isLoading?: boolean;
1600
+ /**
1601
+ * Callback fired when user clicks stop generation
1602
+ */
1603
+ onStop?: () => void;
1604
+ /**
1605
+ * List of available models in the selector dropdown
1606
+ */
1607
+ models?: AIModelOption[];
1608
+ /**
1609
+ * Currently active model ID
1610
+ */
1611
+ selectedModel?: string;
1612
+ /**
1613
+ * Callback when active model is changed
1614
+ */
1615
+ onModelChange?: (modelId: string) => void;
1616
+ /**
1617
+ * Attached files list preview
1618
+ */
1619
+ files?: AttachedFile[];
1620
+ /**
1621
+ * Callback when a file is removed
1622
+ */
1623
+ onRemoveFile?: (fileId: string) => void;
1624
+ /**
1625
+ * Callback when user clicks the attach file button
1626
+ */
1627
+ onAttachClick?: () => void;
1628
+ /**
1629
+ * Whether voice listening is active
1630
+ * @default false
1631
+ */
1632
+ isListening?: boolean;
1633
+ /**
1634
+ * Callback when microphone button is clicked
1635
+ */
1636
+ onVoiceToggle?: () => void;
1637
+ /**
1638
+ * Whether web search enhancement is enabled
1639
+ * @default false
1640
+ */
1641
+ webSearchEnabled?: boolean;
1642
+ /**
1643
+ * Callback when web search toggle is clicked
1644
+ */
1645
+ onWebSearchToggle?: () => void;
1646
+ /**
1647
+ * Whether Deep Reasoning mode is enabled
1648
+ * @default false
1649
+ */
1650
+ reasoningEnabled?: boolean;
1651
+ /**
1652
+ * Callback when Deep Reasoning mode toggle is clicked
1653
+ */
1654
+ onReasoningToggle?: () => void;
1655
+ /**
1656
+ * Disables all interactive inputs
1657
+ * @default false
1658
+ */
1659
+ disabled?: boolean;
1660
+ }
1661
+ /**
1662
+ * AiPromptInput Component
1663
+ *
1664
+ * An ultra-premium input bar for conversational and agentic AI interfaces.
1665
+ * Supports auto-expanding textarea, model selector, attachments, voice pulse,
1666
+ * web search / reasoning toggles, and SVG perimeter-traveling Aurora waves.
1667
+ */
1668
+ declare const AiPromptInput: React$1.ForwardRefExoticComponent<AiPromptInputProps & React$1.RefAttributes<HTMLDivElement>>;
1669
+
1670
+ declare const LoginFormPro: () => React$1.JSX.Element;
1671
+ declare const RegisterFormPro: () => React$1.JSX.Element;
1672
+ declare const PaymentFormPro: () => React$1.JSX.Element;
1673
+ declare const ProfileSettingsForm: () => React$1.JSX.Element;
1674
+ declare const SubscriptionForm: () => React$1.JSX.Element;
1675
+ declare const ContactFormPro: () => React$1.JSX.Element;
1676
+ declare const AdvancedSearchForm: () => React$1.JSX.Element;
1677
+ declare const FileUploadForm: () => React$1.JSX.Element;
1678
+ declare const FeedbackForm: () => React$1.JSX.Element;
1679
+ declare const InviteUsersForm: () => React$1.JSX.Element;
1680
+
1681
+ declare const ProductGallery: () => React$1.JSX.Element;
1682
+ declare const AddToCartBar: () => React$1.JSX.Element;
1683
+ declare const CartDrawerItem: () => React$1.JSX.Element | null;
1684
+ declare const OrderSummaryCard: () => React$1.JSX.Element;
1685
+ declare const PromoCodeInput: () => React$1.JSX.Element;
1686
+ declare const ShippingAddressForm: () => React$1.JSX.Element;
1687
+ declare const ProductReview: () => React$1.JSX.Element;
1688
+ declare const ColorSelector: () => React$1.JSX.Element;
1689
+ declare const SizeSelector: () => React$1.JSX.Element;
1690
+ declare const CategoryCard: () => React$1.JSX.Element;
1691
+
1692
+ declare const ChatBubbleUser: ({ message }: any) => React$1.JSX.Element;
1693
+ declare const ChatBubbleAI: ({ message }: any) => React$1.JSX.Element;
1694
+ declare const AIPromptInput: () => React$1.JSX.Element;
1695
+ declare const ThinkingLoader: () => React$1.JSX.Element;
1696
+ declare const ModelSelector: () => React$1.JSX.Element;
1697
+ declare const GeneratedCodeBlock: () => React$1.JSX.Element;
1698
+ declare const ChatHistorySidebar: () => React$1.JSX.Element;
1699
+ declare const AIFeatureCard: () => React$1.JSX.Element;
1700
+ declare const SuggestionChips: () => React$1.JSX.Element;
1701
+ declare const VoiceInputPulse: () => React$1.JSX.Element;
1702
+
1703
+ interface DataTableProColumn<T = any> {
1704
+ header: React$1.ReactNode;
1705
+ accessorKey?: keyof T | string;
1706
+ cell?: (item: T, index: number) => React$1.ReactNode;
1707
+ className?: string;
1708
+ }
1709
+ interface DataTableProProps<T = any> extends React$1.HTMLAttributes<HTMLDivElement> {
1710
+ data?: T[];
1711
+ columns?: DataTableProColumn<T>[];
1712
+ searchPlaceholder?: string;
1713
+ itemsPerPage?: number;
1714
+ showSearch?: boolean;
1715
+ showExport?: boolean;
1716
+ children?: React$1.ReactNode;
1717
+ }
1718
+ type DataTableProComponent = ((props: DataTableProProps) => React$1.ReactElement | null) & {
1719
+ Header: typeof TableHeader;
1720
+ Body: typeof TableBody;
1721
+ Footer: typeof TableFooter;
1722
+ Row: typeof TableRow;
1723
+ Head: typeof TableHead;
1724
+ Cell: typeof TableCell;
1725
+ Caption: typeof TableCaption;
1726
+ };
1727
+ declare const DataTablePro: DataTableProComponent;
1728
+ declare const InvoiceTable: () => React$1.JSX.Element;
1729
+ declare const UserDirectoryTable: () => React$1.JSX.Element;
1730
+ declare const TransactionHistory: () => React$1.JSX.Element;
1731
+ declare const FileExplorerTable: () => React$1.JSX.Element;
1732
+ declare const LeaderboardTable: () => React$1.JSX.Element;
1733
+ declare const ProductInventoryTable: () => React$1.JSX.Element;
1734
+ declare const ScheduleTable: () => React$1.JSX.Element;
1735
+ declare const PricingComparisonTable: () => React$1.JSX.Element;
1736
+ declare const CompactDataList: () => React$1.JSX.Element;
1737
+
1738
+ declare const DashboardShell: ({ children }: any) => React$1.JSX.Element;
1739
+ declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => React$1.JSX.Element;
1740
+ declare const ActivityFeed: () => React$1.JSX.Element;
1741
+ declare const ProgressWidget: () => React$1.JSX.Element;
1742
+ declare const QuickActionsWidget: () => React$1.JSX.Element;
1743
+ declare const TaskChecklist: () => React$1.JSX.Element;
1744
+ declare const StorageWidget: () => React$1.JSX.Element;
1745
+ declare const RevenueChartWidget: () => React$1.JSX.Element;
1746
+ declare const RecentUsersWidget: () => React$1.JSX.Element;
1747
+ declare const ServerStatusWidget: () => React$1.JSX.Element;
1748
+
1749
+ declare const FilterBar: () => React$1.JSX.Element;
1750
+ declare const LanguageSelector: () => React$1.JSX.Element;
1751
+ declare const UserMenuDropdown: () => React$1.JSX.Element;
1752
+ declare const TreeNavigation: () => React$1.JSX.Element;
1753
+ declare const ContextActionBar: () => React$1.JSX.Element;
1754
+ declare const PaginationPro: () => React$1.JSX.Element;
1755
+
1756
+ declare const ConfettiSuccess: () => React$1.JSX.Element;
1757
+ declare const ActionToast: () => React$1.JSX.Element;
1758
+ declare const MultiStepProgress: ({ current }: any) => React$1.JSX.Element;
1759
+ declare const SkeletonList: () => React$1.JSX.Element;
1760
+ declare const EmptyStatePro: () => React$1.JSX.Element;
1761
+ declare const TooltipForm: () => React$1.JSX.Element;
1762
+ declare const PasswordStrengthMeter: ({ score }: any) => React$1.JSX.Element;
1763
+ declare const UploadProgress: () => React$1.JSX.Element;
1764
+
1765
+ declare const WaitlistForm: () => React$1.JSX.Element;
1766
+ declare const PricingToggle: () => React$1.JSX.Element;
1767
+ declare const FeatureShowcase: () => React$1.JSX.Element;
1768
+ declare const TrustBanner: () => React$1.JSX.Element;
1769
+ declare const ComparisonTableMock: () => React$1.JSX.Element;
1770
+ declare const AnimatedHeroText: () => React$1.JSX.Element;
1771
+ declare const StatCounter: () => React$1.JSX.Element;
1772
+ declare const NewsletterSignup: () => React$1.JSX.Element;
1773
+ declare const VideoModalVisual: () => React$1.JSX.Element;
1774
+ declare const GradientCTABlock: () => React$1.JSX.Element;
1775
+
1776
+ declare const ContactList: () => React$1.JSX.Element;
1777
+ declare const NotificationList: () => React$1.JSX.Element;
1778
+ declare const TimelineVertical: () => React$1.JSX.Element;
1779
+ declare const StepList: () => React$1.JSX.Element;
1780
+ declare const FAQAccordionList: () => React$1.JSX.Element;
1781
+ declare const FileDownloadList: () => React$1.JSX.Element;
1782
+ declare const MessageList: () => React$1.JSX.Element;
1783
+ declare const JobBoardList: () => React$1.JSX.Element;
1784
+ declare const EventScheduleList: () => React$1.JSX.Element;
1785
+ declare const RecentCommentsList: () => React$1.JSX.Element;
1786
+
1787
+ declare const SplitScreenLayout: () => React$1.JSX.Element;
1788
+ declare const AuthenticationLayout: () => React$1.JSX.Element;
1789
+ declare const SidebarLayout: () => React$1.JSX.Element;
1790
+ declare const DashboardGridLayout: () => React$1.JSX.Element;
1791
+ declare const BentoGridVisual: () => React$1.JSX.Element;
1792
+ declare const KanbanBoardVisual: () => React$1.JSX.Element;
1793
+ declare const ChatLayoutVisual: () => React$1.JSX.Element;
1794
+ declare const FeedLayout: () => React$1.JSX.Element;
1795
+ declare const DocumentationLayout: () => React$1.JSX.Element;
1796
+ declare const HeaderFooterLayout: () => React$1.JSX.Element;
1797
+
1798
+ declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
1456
1799
  declare function SplitButton({ primary, secondary, onPrimary, onSecondary, className }: {
1457
1800
  primary: string;
1458
1801
  secondary: string;
1459
1802
  onPrimary?: () => void;
1460
1803
  onSecondary?: () => void;
1461
1804
  className?: string;
1462
- }): react_jsx_runtime.JSX.Element;
1805
+ }): React$1.JSX.Element;
1463
1806
  declare function CopyTextButton({ text, className }: {
1464
1807
  text: string;
1465
1808
  className?: string;
1466
- }): react_jsx_runtime.JSX.Element;
1809
+ }): React$1.JSX.Element;
1467
1810
  declare function ExpandButton({ children, icon, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1468
1811
  icon: React$1.ReactNode;
1469
- }): react_jsx_runtime.JSX.Element;
1812
+ }): React$1.JSX.Element;
1470
1813
  declare function StatusButton({ status, children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1471
1814
  status?: "idle" | "loading" | "success" | "error";
1472
- }): react_jsx_runtime.JSX.Element;
1815
+ }): React$1.JSX.Element;
1473
1816
  declare function SegmentedButton({ options, value, onChange, className }: {
1474
1817
  options: string[];
1475
1818
  value: string;
1476
1819
  onChange: (val: string) => void;
1477
1820
  className?: string;
1478
- }): react_jsx_runtime.JSX.Element;
1479
- declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1821
+ }): React$1.JSX.Element;
1822
+ declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
1480
1823
 
1481
1824
  declare function NeumorphicCard({ children, className }: {
1482
1825
  children: React$1.ReactNode;
1483
1826
  className?: string;
1484
- }): react_jsx_runtime.JSX.Element;
1827
+ }): React$1.JSX.Element;
1485
1828
  declare function GradientMeshCard({ children, className }: {
1486
1829
  children: React$1.ReactNode;
1487
1830
  className?: string;
1488
- }): react_jsx_runtime.JSX.Element;
1831
+ }): React$1.JSX.Element;
1489
1832
  declare function TiltCard({ children, className }: {
1490
1833
  children: React$1.ReactNode;
1491
1834
  className?: string;
1492
- }): react_jsx_runtime.JSX.Element;
1835
+ }): React$1.JSX.Element;
1493
1836
  declare function FeatureCard({ icon, title, description, className }: {
1494
1837
  icon: React$1.ReactNode;
1495
1838
  title: string;
1496
1839
  description: string;
1497
1840
  className?: string;
1498
- }): react_jsx_runtime.JSX.Element;
1841
+ }): React$1.JSX.Element;
1499
1842
  declare function MetricCard({ title, value, change, changeType, className }: {
1500
1843
  title: string;
1501
1844
  value: string;
1502
1845
  change: string;
1503
1846
  changeType?: "positive" | "negative" | "neutral";
1504
1847
  className?: string;
1505
- }): react_jsx_runtime.JSX.Element;
1848
+ }): React$1.JSX.Element;
1506
1849
 
1507
1850
  declare function OTPCodeInput({ length, className, onChange }: {
1508
1851
  length?: number;
1509
1852
  className?: string;
1510
1853
  onChange?: (val: string) => void;
1511
- }): react_jsx_runtime.JSX.Element;
1854
+ }): React$1.JSX.Element;
1512
1855
  declare function TagInput({ placeholder, className }: {
1513
1856
  placeholder?: string;
1514
1857
  className?: string;
1515
- }): react_jsx_runtime.JSX.Element;
1858
+ }): React$1.JSX.Element;
1516
1859
  declare function CurrencyInput({ currency, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
1517
1860
  currency?: string;
1518
- }): react_jsx_runtime.JSX.Element;
1519
- declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): react_jsx_runtime.JSX.Element;
1861
+ }): React$1.JSX.Element;
1862
+ declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): React$1.JSX.Element;
1520
1863
  declare function ColorPickerInput({ value: initial, label, className, onChange }: {
1521
1864
  value?: string;
1522
1865
  label?: string;
1523
1866
  className?: string;
1524
1867
  onChange?: (color: string) => void;
1525
- }): react_jsx_runtime.JSX.Element;
1526
-
1527
- declare const RadioCard: ({ title, description, checked, onChange, value, name }: any) => react_jsx_runtime.JSX.Element;
1528
- declare const ColorSwatch: ({ color, selected, onClick }: any) => react_jsx_runtime.JSX.Element;
1529
- declare const NumberStepper: ({ value, onChange, min, max }: any) => react_jsx_runtime.JSX.Element;
1530
- declare const FileDropzone: ({ onDrop }: any) => react_jsx_runtime.JSX.Element;
1531
- declare const RatingStars: ({ rating, max, onRate }: any) => react_jsx_runtime.JSX.Element;
1532
- declare const ToggleGroupItemWrapper: ({ children, active, onClick }: any) => react_jsx_runtime.JSX.Element;
1533
- declare const ToggleGroupWrapper: ({ children }: any) => react_jsx_runtime.JSX.Element;
1534
- declare const InputWithLabelOverlay: ({ label, id, ...props }: any) => react_jsx_runtime.JSX.Element;
1535
- declare const VisualSelectCard: ({ icon: Icon, title, description, selected }: any) => react_jsx_runtime.JSX.Element;
1536
- declare const FloatingActionForm: ({ isOpen, toggle, children }: any) => react_jsx_runtime.JSX.Element;
1537
- declare const OTPInput: ({ length }: any) => react_jsx_runtime.JSX.Element;
1868
+ }): React$1.JSX.Element;
1869
+
1870
+ declare const RadioCard: ({ title, description, checked, onChange, value, name }: any) => React$1.JSX.Element;
1871
+ declare const ColorSwatch: ({ color, selected, onClick }: any) => React$1.JSX.Element;
1872
+ declare const NumberStepper: ({ value, onChange, min, max }: any) => React$1.JSX.Element;
1873
+ declare const FileDropzone: ({ onDrop }: any) => React$1.JSX.Element;
1874
+ declare const RatingStars: ({ rating, max, onRate }: any) => React$1.JSX.Element;
1875
+ declare const ToggleGroupItemWrapper: ({ children, active, onClick }: any) => React$1.JSX.Element;
1876
+ declare const ToggleGroupWrapper: ({ children }: any) => React$1.JSX.Element;
1877
+ declare const InputWithLabelOverlay: ({ label, id, ...props }: any) => React$1.JSX.Element;
1878
+ declare const VisualSelectCard: ({ icon: Icon, title, description, selected }: any) => React$1.JSX.Element;
1879
+ declare const FloatingActionForm: ({ isOpen, toggle, children }: any) => React$1.JSX.Element;
1880
+ declare const OTPInput: ({ length }: any) => React$1.JSX.Element;
1538
1881
 
1539
1882
  interface AnimatedGradientBorderProps {
1883
+ /**
1884
+ * Описание для children
1885
+ * @default undefined
1886
+ */
1540
1887
  children: React$1.ReactNode;
1888
+ /**
1889
+ * Описание для className
1890
+ * @default undefined
1891
+ */
1541
1892
  className?: string;
1893
+ /**
1894
+ * Описание для containerClassName
1895
+ * @default undefined
1896
+ */
1542
1897
  containerClassName?: string;
1898
+ /**
1899
+ * Описание для gradientClassName
1900
+ * @default undefined
1901
+ */
1543
1902
  gradientClassName?: string;
1903
+ /**
1904
+ * Описание для duration
1905
+ * @default undefined
1906
+ */
1544
1907
  duration?: number;
1545
1908
  }
1546
- declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps): react_jsx_runtime.JSX.Element;
1547
- interface DockProps {
1548
- items: {
1549
- icon: React$1.ReactNode;
1550
- label: string;
1551
- onClick?: () => void;
1552
- }[];
1553
- className?: string;
1554
- magnification?: number;
1555
- distance?: number;
1556
- }
1557
- declare function Dock({ items, className, magnification, distance, }: DockProps): react_jsx_runtime.JSX.Element;
1909
+ declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps): React$1.JSX.Element;
1558
1910
  interface AnimatedBeamProps {
1911
+ /**
1912
+ * Описание для className
1913
+ * @default undefined
1914
+ */
1559
1915
  className?: string;
1916
+ /**
1917
+ * Описание для children
1918
+ * @default undefined
1919
+ */
1560
1920
  children: React$1.ReactNode;
1561
1921
  }
1562
- declare function AnimatedBeam({ className, children }: AnimatedBeamProps): react_jsx_runtime.JSX.Element;
1922
+ declare function AnimatedBeam({ className, children }: AnimatedBeamProps): React$1.JSX.Element;
1563
1923
  interface ShinyTextProps {
1924
+ /**
1925
+ * Описание для children
1926
+ * @default undefined
1927
+ */
1564
1928
  children: React$1.ReactNode;
1929
+ /**
1930
+ * Описание для className
1931
+ * @default undefined
1932
+ */
1565
1933
  className?: string;
1934
+ /**
1935
+ * Описание для shimmerWidth
1936
+ * @default undefined
1937
+ */
1566
1938
  shimmerWidth?: number;
1567
1939
  }
1568
- declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): react_jsx_runtime.JSX.Element;
1940
+ declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): React$1.JSX.Element;
1569
1941
  interface RetroGridProps {
1942
+ /**
1943
+ * Описание для className
1944
+ * @default undefined
1945
+ */
1570
1946
  className?: string;
1947
+ /**
1948
+ * Описание для angle
1949
+ * @default undefined
1950
+ */
1571
1951
  angle?: number;
1572
1952
  }
1573
- declare function RetroGrid({ className, angle }: RetroGridProps): react_jsx_runtime.JSX.Element;
1953
+ declare function RetroGrid({ className, angle }: RetroGridProps): React$1.JSX.Element;
1574
1954
  interface MeteorsProps {
1955
+ /**
1956
+ * Описание для number
1957
+ * @default undefined
1958
+ */
1575
1959
  number?: number;
1960
+ /**
1961
+ * Описание для className
1962
+ * @default undefined
1963
+ */
1576
1964
  className?: string;
1577
1965
  }
1578
- declare function Meteors({ number, className }: MeteorsProps): react_jsx_runtime.JSX.Element;
1966
+ declare function Meteors({ number, className }: MeteorsProps): React$1.JSX.Element;
1579
1967
 
1580
1968
  interface MorphingTextProps {
1969
+ /**
1970
+ * Описание для texts
1971
+ * @default undefined
1972
+ */
1581
1973
  texts: string[];
1974
+ /**
1975
+ * Описание для className
1976
+ * @default undefined
1977
+ */
1582
1978
  className?: string;
1979
+ /**
1980
+ * Описание для interval
1981
+ * @default undefined
1982
+ */
1583
1983
  interval?: number;
1584
1984
  }
1585
- declare function MorphingText({ texts, className, interval, }: MorphingTextProps): react_jsx_runtime.JSX.Element;
1985
+ declare function MorphingText({ texts, className, interval, }: MorphingTextProps): React$1.JSX.Element;
1586
1986
  interface AnimatedListProps {
1987
+ /**
1988
+ * Описание для children
1989
+ * @default undefined
1990
+ */
1587
1991
  children: React$1.ReactNode;
1992
+ /**
1993
+ * Описание для className
1994
+ * @default undefined
1995
+ */
1588
1996
  className?: string;
1589
- delay?: number;
1997
+ /**
1998
+ * Описание для delay
1999
+ * @default undefined
2000
+ */
2001
+ delay?: number;
1590
2002
  }
1591
- declare function AnimatedList({ children, className, delay, }: AnimatedListProps): react_jsx_runtime.JSX.Element;
2003
+ declare function AnimatedList({ children, className, delay, }: AnimatedListProps): React$1.JSX.Element;
1592
2004
 
1593
2005
  interface InteractiveHoverButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2006
+ /**
2007
+ * Описание для text
2008
+ * @default undefined
2009
+ */
1594
2010
  text?: string;
2011
+ /**
2012
+ * Описание для className
2013
+ * @default undefined
2014
+ */
1595
2015
  className?: string;
1596
2016
  }
1597
- declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): react_jsx_runtime.JSX.Element;
2017
+ declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): React$1.JSX.Element;
1598
2018
  interface PulsatingButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2019
+ /**
2020
+ * Описание для pulseColor
2021
+ * @default undefined
2022
+ */
1599
2023
  pulseColor?: string;
2024
+ /**
2025
+ * Описание для duration
2026
+ * @default undefined
2027
+ */
1600
2028
  duration?: string;
2029
+ /**
2030
+ * Описание для className
2031
+ * @default undefined
2032
+ */
1601
2033
  className?: string;
1602
2034
  }
1603
- declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): react_jsx_runtime.JSX.Element;
2035
+ declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): React$1.JSX.Element;
1604
2036
  interface RainbowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2037
+ /**
2038
+ * Описание для className
2039
+ * @default undefined
2040
+ */
1605
2041
  className?: string;
1606
2042
  }
1607
- declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): react_jsx_runtime.JSX.Element;
2043
+ declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): React$1.JSX.Element;
1608
2044
  interface CoolModeProps {
2045
+ /**
2046
+ * Описание для children
2047
+ * @default undefined
2048
+ */
1609
2049
  children: React$1.ReactElement;
2050
+ /**
2051
+ * Описание для className
2052
+ * @default undefined
2053
+ */
1610
2054
  className?: string;
1611
2055
  }
1612
- declare function CoolMode({ children, className }: CoolModeProps): react_jsx_runtime.JSX.Element;
2056
+ declare function CoolMode({ children, className }: CoolModeProps): React$1.JSX.Element;
1613
2057
  interface WordPullUpProps {
2058
+ /**
2059
+ * Описание для words
2060
+ * @default undefined
2061
+ */
1614
2062
  words: string;
2063
+ /**
2064
+ * Описание для className
2065
+ * @default undefined
2066
+ */
1615
2067
  className?: string;
2068
+ /**
2069
+ * Описание для delayMultiple
2070
+ * @default undefined
2071
+ */
1616
2072
  delayMultiple?: number;
1617
2073
  }
1618
- declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): react_jsx_runtime.JSX.Element;
2074
+ declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): React$1.JSX.Element;
1619
2075
  interface BoxRevealProps {
2076
+ /**
2077
+ * Описание для children
2078
+ * @default undefined
2079
+ */
1620
2080
  children: React$1.ReactNode;
2081
+ /**
2082
+ * Описание для className
2083
+ * @default undefined
2084
+ */
1621
2085
  className?: string;
2086
+ /**
2087
+ * Описание для boxColor
2088
+ * @default undefined
2089
+ */
1622
2090
  boxColor?: string;
2091
+ /**
2092
+ * Описание для duration
2093
+ * @default undefined
2094
+ */
1623
2095
  duration?: number;
2096
+ /**
2097
+ * Описание для delay
2098
+ * @default undefined
2099
+ */
1624
2100
  delay?: number;
1625
2101
  }
1626
- declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): react_jsx_runtime.JSX.Element;
2102
+ declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): React$1.JSX.Element;
1627
2103
  interface TextShimmerProps {
2104
+ /**
2105
+ * Описание для children
2106
+ * @default undefined
2107
+ */
1628
2108
  children: React$1.ReactNode;
2109
+ /**
2110
+ * Описание для className
2111
+ * @default undefined
2112
+ */
1629
2113
  className?: string;
2114
+ /**
2115
+ * Описание для duration
2116
+ * @default undefined
2117
+ */
1630
2118
  duration?: number;
2119
+ /**
2120
+ * Описание для spread
2121
+ * @default undefined
2122
+ */
1631
2123
  spread?: number;
1632
2124
  }
1633
- declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): react_jsx_runtime.JSX.Element;
2125
+ declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): React$1.JSX.Element;
1634
2126
 
1635
2127
  interface DrawerProps {
1636
2128
  /** Whether the drawer is open */
@@ -1646,7 +2138,7 @@ interface DrawerProps {
1646
2138
  /** Title for the drawer header */
1647
2139
  title?: string;
1648
2140
  }
1649
- declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): react_jsx_runtime.JSX.Element;
2141
+ declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): React$1.JSX.Element;
1650
2142
  interface CommandPaletteItem {
1651
2143
  /** Unique identifier */
1652
2144
  id: string;
@@ -1671,7 +2163,7 @@ interface CommandPaletteProps {
1671
2163
  /** Additional CSS classes */
1672
2164
  className?: string;
1673
2165
  }
1674
- declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element;
2166
+ declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): React$1.JSX.Element;
1675
2167
  interface ContextMenuItem {
1676
2168
  /** Display label */
1677
2169
  label: string;
@@ -1694,7 +2186,7 @@ interface ContextMenuProps {
1694
2186
  /** Additional CSS classes */
1695
2187
  className?: string;
1696
2188
  }
1697
- declare function ContextMenu({ items, children, className }: ContextMenuProps): react_jsx_runtime.JSX.Element;
2189
+ declare function ContextMenu({ items, children, className }: ContextMenuProps): React$1.JSX.Element;
1698
2190
 
1699
2191
  declare function ImageCarousel({ images, autoPlay, interval, className }: {
1700
2192
  images: {
@@ -1704,57 +2196,57 @@ declare function ImageCarousel({ images, autoPlay, interval, className }: {
1704
2196
  autoPlay?: boolean;
1705
2197
  interval?: number;
1706
2198
  className?: string;
1707
- }): react_jsx_runtime.JSX.Element;
2199
+ }): React$1.JSX.Element;
1708
2200
  declare function VideoPlayer({ title, duration, thumbnail, className }: {
1709
2201
  title?: string;
1710
2202
  duration?: string;
1711
2203
  thumbnail?: string;
1712
2204
  className?: string;
1713
- }): react_jsx_runtime.JSX.Element;
2205
+ }): React$1.JSX.Element;
1714
2206
  declare function AudioWaveform({ playing, bars, className }: {
1715
2207
  playing?: boolean;
1716
2208
  bars?: number;
1717
2209
  className?: string;
1718
- }): react_jsx_runtime.JSX.Element;
2210
+ }): React$1.JSX.Element;
1719
2211
  declare function FilePreviewCard({ name, size, type, className }: {
1720
2212
  name: string;
1721
2213
  size: string;
1722
2214
  type?: "file" | "image" | "video" | "pdf" | "code";
1723
2215
  className?: string;
1724
- }): react_jsx_runtime.JSX.Element;
2216
+ }): React$1.JSX.Element;
1725
2217
  declare function EmbedCard({ title, description, domain, favicon, className }: {
1726
2218
  title: string;
1727
2219
  description?: string;
1728
2220
  domain: string;
1729
2221
  favicon?: string;
1730
2222
  className?: string;
1731
- }): react_jsx_runtime.JSX.Element;
2223
+ }): React$1.JSX.Element;
1732
2224
  declare function MusicPlayer({ title, artist, album, className }: {
1733
2225
  title: string;
1734
2226
  artist: string;
1735
2227
  album?: string;
1736
2228
  className?: string;
1737
- }): react_jsx_runtime.JSX.Element;
2229
+ }): React$1.JSX.Element;
1738
2230
  declare function ImageCompare({ leftImage, rightImage, leftLabel, rightLabel, className }: {
1739
2231
  leftImage?: string;
1740
2232
  rightImage?: string;
1741
2233
  leftLabel?: string;
1742
2234
  rightLabel?: string;
1743
2235
  className?: string;
1744
- }): react_jsx_runtime.JSX.Element;
2236
+ }): React$1.JSX.Element;
1745
2237
  declare function GalleryGrid({ items, className }: {
1746
2238
  items: {
1747
2239
  title: string;
1748
2240
  color?: string;
1749
2241
  }[];
1750
2242
  className?: string;
1751
- }): react_jsx_runtime.JSX.Element;
2243
+ }): React$1.JSX.Element;
1752
2244
  declare function CodeSnippet({ code, language, filename, className }: {
1753
2245
  code: string;
1754
2246
  language?: string;
1755
2247
  filename?: string;
1756
2248
  className?: string;
1757
- }): react_jsx_runtime.JSX.Element;
2249
+ }): React$1.JSX.Element;
1758
2250
  declare function TestimonialCarousel({ testimonials, className }: {
1759
2251
  testimonials: {
1760
2252
  quote: string;
@@ -1762,7 +2254,7 @@ declare function TestimonialCarousel({ testimonials, className }: {
1762
2254
  role: string;
1763
2255
  }[];
1764
2256
  className?: string;
1765
- }): react_jsx_runtime.JSX.Element;
2257
+ }): React$1.JSX.Element;
1766
2258
 
1767
2259
  declare function DonutChart({ value, max, size, strokeWidth, color, label, className }: {
1768
2260
  value: number;
@@ -1772,7 +2264,7 @@ declare function DonutChart({ value, max, size, strokeWidth, color, label, class
1772
2264
  color?: string;
1773
2265
  label?: string;
1774
2266
  className?: string;
1775
- }): react_jsx_runtime.JSX.Element;
2267
+ }): React$1.JSX.Element;
1776
2268
  declare function BarChartSimple({ data, height, className }: {
1777
2269
  data: {
1778
2270
  label: string;
@@ -1781,13 +2273,13 @@ declare function BarChartSimple({ data, height, className }: {
1781
2273
  }[];
1782
2274
  height?: number;
1783
2275
  className?: string;
1784
- }): react_jsx_runtime.JSX.Element;
2276
+ }): React$1.JSX.Element;
1785
2277
  declare function AreaChartSimple({ data, height, color, className }: {
1786
2278
  data: number[];
1787
2279
  height?: number;
1788
2280
  color?: string;
1789
2281
  className?: string;
1790
- }): react_jsx_runtime.JSX.Element;
2282
+ }): React$1.JSX.Element;
1791
2283
  declare function StatWidget({ title, value, change, changeType, data, className }: {
1792
2284
  title: string;
1793
2285
  value: string;
@@ -1795,25 +2287,25 @@ declare function StatWidget({ title, value, change, changeType, data, className
1795
2287
  changeType?: "positive" | "negative";
1796
2288
  data?: number[];
1797
2289
  className?: string;
1798
- }): react_jsx_runtime.JSX.Element;
2290
+ }): React$1.JSX.Element;
1799
2291
  declare function ProgressCircle({ value, size, label, className }: {
1800
2292
  value: number;
1801
2293
  size?: number;
1802
2294
  label?: string;
1803
2295
  className?: string;
1804
- }): react_jsx_runtime.JSX.Element;
2296
+ }): React$1.JSX.Element;
1805
2297
  declare function ComparisonBar({ label1, label2, value1, value2, className }: {
1806
2298
  label1: string;
1807
2299
  label2: string;
1808
2300
  value1: number;
1809
2301
  value2: number;
1810
2302
  className?: string;
1811
- }): react_jsx_runtime.JSX.Element;
2303
+ }): React$1.JSX.Element;
1812
2304
  declare function HeatmapGrid({ data, columns, className }: {
1813
2305
  data: number[];
1814
2306
  columns?: number;
1815
2307
  className?: string;
1816
- }): react_jsx_runtime.JSX.Element;
2308
+ }): React$1.JSX.Element;
1817
2309
  declare function LeaderboardWidget({ items, title, className }: {
1818
2310
  items: {
1819
2311
  name: string;
@@ -1822,7 +2314,7 @@ declare function LeaderboardWidget({ items, title, className }: {
1822
2314
  }[];
1823
2315
  title?: string;
1824
2316
  className?: string;
1825
- }): react_jsx_runtime.JSX.Element;
2317
+ }): React$1.JSX.Element;
1826
2318
  declare function FunnelChart({ steps, className }: {
1827
2319
  steps: {
1828
2320
  label: string;
@@ -1830,7 +2322,7 @@ declare function FunnelChart({ steps, className }: {
1830
2322
  color?: string;
1831
2323
  }[];
1832
2324
  className?: string;
1833
- }): react_jsx_runtime.JSX.Element;
2325
+ }): React$1.JSX.Element;
1834
2326
  declare function KPIDashboard({ metrics, className }: {
1835
2327
  metrics: {
1836
2328
  label: string;
@@ -1840,212 +2332,750 @@ declare function KPIDashboard({ metrics, className }: {
1840
2332
  trendType?: "up" | "down";
1841
2333
  }[];
1842
2334
  className?: string;
1843
- }): react_jsx_runtime.JSX.Element;
2335
+ }): React$1.JSX.Element;
2336
+ interface ModernAreaChartProps {
2337
+ data?: {
2338
+ label: string;
2339
+ value: number;
2340
+ }[];
2341
+ color?: string;
2342
+ height?: number;
2343
+ showGrid?: boolean;
2344
+ showTooltip?: boolean;
2345
+ currency?: string;
2346
+ className?: string;
2347
+ }
2348
+ declare function ModernAreaChart({ data, color, height, showGrid, showTooltip, currency, className, }: ModernAreaChartProps): React$1.JSX.Element;
2349
+ interface ModernBarChartProps {
2350
+ data?: {
2351
+ label: string;
2352
+ value: number;
2353
+ }[];
2354
+ color?: string;
2355
+ height?: number;
2356
+ className?: string;
2357
+ }
2358
+ declare function ModernBarChart({ data, color, height, className, }: ModernBarChartProps): React$1.JSX.Element;
2359
+ interface ModernDonutChartProps {
2360
+ percentage?: number;
2361
+ title?: string;
2362
+ subtitle?: string;
2363
+ color?: string;
2364
+ size?: number;
2365
+ strokeWidth?: number;
2366
+ className?: string;
2367
+ }
2368
+ declare function ModernDonutChart({ percentage, title, subtitle, color, size, strokeWidth, className, }: ModernDonutChartProps): React$1.JSX.Element;
1844
2369
 
1845
- declare function ChatMessage({ message, sender, time, avatar, isOwn, className }: {
1846
- message: string;
1847
- sender: string;
2370
+ interface ChatMessageContextValue {
2371
+ variant: 'sent' | 'received';
2372
+ isOwn: boolean;
2373
+ }
2374
+ interface ChatMessageProps extends React$1.HTMLAttributes<HTMLDivElement> {
2375
+ variant?: 'sent' | 'received';
2376
+ isOwn?: boolean;
2377
+ message?: string;
2378
+ sender?: string;
1848
2379
  time?: string;
1849
2380
  avatar?: string;
1850
- isOwn?: boolean;
1851
- className?: string;
1852
- }): react_jsx_runtime.JSX.Element;
1853
- declare function ChatInput({ placeholder, onSend, className }: {
2381
+ children?: React$1.ReactNode;
2382
+ }
2383
+ declare const ChatMessage: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>>;
2384
+ interface ChatMessageAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2385
+ src?: string;
2386
+ fallback?: string;
2387
+ isOnline?: boolean;
2388
+ }
2389
+ declare const ChatMessageAvatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2390
+ declare const ChatMessageBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2391
+ declare const ChatMessageHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2392
+ declare const ChatMessageSender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2393
+ declare const ChatMessageTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2394
+ interface ChatMessageContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2395
+ variant?: 'sent' | 'received';
2396
+ }
2397
+ declare const ChatMessageContent: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
2398
+ interface ChatMessageStatusProps extends React$1.HTMLAttributes<HTMLSpanElement> {
2399
+ status?: 'sent' | 'delivered' | 'read';
2400
+ }
2401
+ declare const ChatMessageStatus: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
2402
+ declare const ChatMessageCompound: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>> & {
2403
+ Avatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2404
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2405
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2406
+ Sender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2407
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2408
+ Content: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
2409
+ Status: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
2410
+ };
2411
+ interface ChatInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
1854
2412
  placeholder?: string;
1855
2413
  onSend?: (message: string) => void;
1856
- className?: string;
1857
- }): react_jsx_runtime.JSX.Element;
1858
- declare function UserProfileCard({ name, username, bio, stats, isFollowing, className }: {
1859
- name: string;
1860
- username: string;
2414
+ children?: React$1.ReactNode;
2415
+ }
2416
+ declare const ChatInput: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>>;
2417
+ declare const ChatInputField: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
2418
+ declare const ChatInputActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2419
+ interface ChatInputActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2420
+ icon?: React$1.ReactNode;
2421
+ }
2422
+ declare const ChatInputAction: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2423
+ interface ChatInputSubmitProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2424
+ disabled?: boolean;
2425
+ }
2426
+ declare const ChatInputSubmit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
2427
+ declare const ChatInputCompound: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>> & {
2428
+ Field: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
2429
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2430
+ Action: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2431
+ Submit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
2432
+ };
2433
+ interface UserProfileCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2434
+ name?: string;
2435
+ username?: string;
1861
2436
  bio?: string;
1862
2437
  stats?: {
1863
2438
  label: string;
1864
2439
  value: string;
1865
2440
  }[];
1866
2441
  isFollowing?: boolean;
1867
- className?: string;
1868
- }): react_jsx_runtime.JSX.Element;
1869
- declare function CommentThread({ comments, className }: {
1870
- comments: {
2442
+ avatar?: string;
2443
+ coverGradient?: string;
2444
+ children?: React$1.ReactNode;
2445
+ }
2446
+ declare const UserProfileCard: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>>;
2447
+ interface UserProfileCoverProps extends React$1.HTMLAttributes<HTMLDivElement> {
2448
+ gradient?: string;
2449
+ imageSrc?: string;
2450
+ }
2451
+ declare const UserProfileCover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
2452
+ interface UserProfileAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2453
+ src?: string;
2454
+ fallback?: string;
2455
+ status?: 'online' | 'busy' | 'offline';
2456
+ }
2457
+ declare const UserProfileAvatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2458
+ declare const UserProfileInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2459
+ declare const UserProfileName: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
2460
+ declare const UserProfileHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2461
+ declare const UserProfileBio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2462
+ declare const UserProfileStats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2463
+ interface UserProfileStatProps extends React$1.HTMLAttributes<HTMLDivElement> {
2464
+ label: string;
2465
+ value: string;
2466
+ }
2467
+ declare const UserProfileStat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
2468
+ interface UserProfileFollowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2469
+ following?: boolean;
2470
+ }
2471
+ declare const UserProfileFollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2472
+ declare const UserProfileCardCompound: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>> & {
2473
+ Cover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
2474
+ Avatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2475
+ Info: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2476
+ Name: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
2477
+ Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2478
+ Bio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2479
+ Stats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2480
+ Stat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
2481
+ FollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2482
+ };
2483
+ interface CommentData {
2484
+ author: string;
2485
+ text: string;
2486
+ time: string;
2487
+ avatar?: string;
2488
+ replies?: {
1871
2489
  author: string;
1872
2490
  text: string;
1873
2491
  time: string;
1874
- replies?: {
1875
- author: string;
1876
- text: string;
1877
- time: string;
1878
- }[];
1879
- }[];
1880
- className?: string;
1881
- }): react_jsx_runtime.JSX.Element;
1882
- declare function ReactionBar({ reactions, onReact, className }: {
1883
- reactions: {
1884
- emoji: string;
1885
- count: number;
1886
- active?: boolean;
2492
+ avatar?: string;
1887
2493
  }[];
1888
- onReact?: (emoji: string) => void;
1889
- className?: string;
1890
- }): react_jsx_runtime.JSX.Element;
1891
- declare function ActivityItem({ user, action, target, time, icon, className }: {
1892
- user: string;
1893
- action: string;
1894
- target?: string;
1895
- time: string;
1896
- icon?: React$1.ReactNode;
1897
- className?: string;
1898
- }): react_jsx_runtime.JSX.Element;
1899
- declare function SocialPost({ author, handle, content, time, likes, comments, shares, className }: {
1900
- author: string;
1901
- handle: string;
1902
- content: string;
1903
- time: string;
2494
+ }
2495
+ interface CommentThreadProps extends React$1.HTMLAttributes<HTMLDivElement> {
2496
+ comments?: CommentData[];
2497
+ children?: React$1.ReactNode;
2498
+ }
2499
+ declare const CommentThread: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>>;
2500
+ declare const CommentItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2501
+ interface CommentAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2502
+ src?: string;
2503
+ fallback?: string;
2504
+ size?: 'sm' | 'md';
2505
+ }
2506
+ declare const CommentAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2507
+ declare const CommentBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2508
+ declare const CommentHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2509
+ declare const CommentAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2510
+ declare const CommentTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2511
+ declare const CommentText: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2512
+ declare const CommentActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2513
+ declare const CommentReply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2514
+ declare const CommentThreadCompound: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>> & {
2515
+ Item: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2516
+ Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2517
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2518
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2519
+ Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2520
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2521
+ Text: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2522
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2523
+ Reply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2524
+ };
2525
+ interface SocialPostProps extends React$1.HTMLAttributes<HTMLDivElement> {
2526
+ author?: string;
2527
+ handle?: string;
2528
+ content?: string;
2529
+ time?: string;
2530
+ avatar?: string;
1904
2531
  likes?: number;
1905
2532
  comments?: number;
1906
2533
  shares?: number;
1907
- className?: string;
1908
- }): react_jsx_runtime.JSX.Element;
1909
- declare function OnlineUsersList({ users, className }: {
1910
- users: {
1911
- name: string;
1912
- status?: "online" | "away" | "busy" | "offline";
1913
- }[];
1914
- className?: string;
1915
- }): react_jsx_runtime.JSX.Element;
1916
- declare function ShareSheet({ url, title, className }: {
2534
+ children?: React$1.ReactNode;
2535
+ }
2536
+ declare const SocialPost: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>>;
2537
+ declare const SocialPostHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2538
+ declare const SocialPostAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2539
+ declare const SocialPostAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2540
+ declare const SocialPostHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2541
+ declare const SocialPostTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2542
+ declare const SocialPostContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2543
+ declare const SocialPostActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2544
+ interface SocialPostActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2545
+ icon?: React$1.ReactNode;
2546
+ label?: React$1.ReactNode;
2547
+ active?: boolean;
2548
+ }
2549
+ declare const SocialPostAction: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2550
+ declare const SocialPostCompound: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>> & {
2551
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2552
+ Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2553
+ Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2554
+ Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2555
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2556
+ Content: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2557
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2558
+ Action: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2559
+ };
2560
+ interface ReactionData {
2561
+ emoji: string;
2562
+ count: number;
2563
+ active?: boolean;
2564
+ }
2565
+ interface ReactionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2566
+ reactions?: ReactionData[];
2567
+ onReact?: (emoji: string) => void;
2568
+ children?: React$1.ReactNode;
2569
+ }
2570
+ declare const ReactionBar: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>>;
2571
+ interface ReactionItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2572
+ emoji: string;
2573
+ count: number;
2574
+ active?: boolean;
2575
+ }
2576
+ declare const ReactionItem: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2577
+ declare const ReactionAdd: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
2578
+ onAdd?: () => void;
2579
+ } & React$1.RefAttributes<HTMLButtonElement>>;
2580
+ declare const ReactionBarCompound: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>> & {
2581
+ Item: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2582
+ Add: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
2583
+ onAdd?: () => void;
2584
+ } & React$1.RefAttributes<HTMLButtonElement>>;
2585
+ };
2586
+ interface ActivityItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
2587
+ user?: string;
2588
+ action?: string;
2589
+ target?: string;
2590
+ time?: string;
2591
+ icon?: React$1.ReactNode;
2592
+ children?: React$1.ReactNode;
2593
+ }
2594
+ declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps & React$1.RefAttributes<HTMLDivElement>>;
2595
+ interface OnlineUserData {
2596
+ name: string;
2597
+ status?: 'online' | 'away' | 'busy' | 'offline';
2598
+ avatar?: string;
2599
+ }
2600
+ interface OnlineUsersListProps extends React$1.HTMLAttributes<HTMLDivElement> {
2601
+ users?: OnlineUserData[];
2602
+ children?: React$1.ReactNode;
2603
+ }
2604
+ declare const OnlineUsersList: React$1.ForwardRefExoticComponent<OnlineUsersListProps & React$1.RefAttributes<HTMLDivElement>>;
2605
+ interface ShareSheetProps extends React$1.HTMLAttributes<HTMLDivElement> {
1917
2606
  url?: string;
1918
2607
  title?: string;
1919
- className?: string;
1920
- }): react_jsx_runtime.JSX.Element;
1921
- declare function NotificationCenter({ notifications, className }: {
1922
- notifications: {
1923
- title: string;
1924
- message: string;
1925
- time: string;
1926
- read?: boolean;
1927
- type?: "info" | "success" | "warning";
1928
- }[];
1929
- className?: string;
1930
- }): react_jsx_runtime.JSX.Element;
2608
+ children?: React$1.ReactNode;
2609
+ }
2610
+ declare const ShareSheet: React$1.ForwardRefExoticComponent<ShareSheetProps & React$1.RefAttributes<HTMLDivElement>>;
2611
+ interface NotificationItemData {
2612
+ title: string;
2613
+ message: string;
2614
+ time: string;
2615
+ read?: boolean;
2616
+ type?: 'info' | 'success' | 'warning';
2617
+ }
2618
+ interface NotificationCenterProps extends React$1.HTMLAttributes<HTMLDivElement> {
2619
+ notifications?: NotificationItemData[];
2620
+ onMarkAllRead?: () => void;
2621
+ children?: React$1.ReactNode;
2622
+ }
2623
+ declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLDivElement>>;
1931
2624
 
1932
- declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, className }: {
2625
+ interface ProductCardProProps extends React$1.HTMLAttributes<HTMLDivElement> {
1933
2626
  name: string;
1934
- price: string;
1935
- originalPrice?: string;
2627
+ price: string | number;
2628
+ originalPrice?: string | number;
1936
2629
  badge?: string;
1937
2630
  rating?: number;
1938
2631
  reviewCount?: number;
1939
- className?: string;
1940
- }): react_jsx_runtime.JSX.Element;
1941
- declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className }: {
2632
+ imageSrc?: string;
2633
+ image?: string;
2634
+ colors?: string[];
2635
+ onAddToCart?: () => void;
2636
+ }
2637
+ declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, image, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2638
+ interface CheckoutSummaryProps extends React$1.HTMLAttributes<HTMLDivElement> {
2639
+ subtotal: string | number;
2640
+ shipping?: string;
2641
+ tax?: string | number;
2642
+ total: string | number;
2643
+ onCheckout?: () => void;
2644
+ }
2645
+ declare function CheckoutSummary({ subtotal, shipping, tax, total, onCheckout, className, ...props }: CheckoutSummaryProps): React$1.JSX.Element;
2646
+ interface SubscriptionCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2647
+ plan: string;
2648
+ price: string | number;
2649
+ billingPeriod?: string;
2650
+ nextBilling?: string;
2651
+ status?: "active" | "cancelled" | "past_due";
2652
+ features?: string[];
2653
+ isPopular?: boolean;
2654
+ onUpgrade?: () => void;
2655
+ }
2656
+ declare function SubscriptionCard({ plan, price, billingPeriod, nextBilling, status, features, isPopular, onUpgrade, className, ...props }: SubscriptionCardProps): React$1.JSX.Element;
2657
+ interface CreditCardVisualProps extends React$1.HTMLAttributes<HTMLDivElement> {
2658
+ holder?: string;
2659
+ number?: string;
2660
+ expiry?: string;
2661
+ type?: "visa" | "mastercard" | "amex";
2662
+ }
2663
+ declare function CreditCardVisual({ holder, number, expiry, type, className, ...props }: CreditCardVisualProps): React$1.JSX.Element;
2664
+ interface CartItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1942
2665
  name: string;
1943
- price: string;
2666
+ price: string | number;
1944
2667
  quantity?: number;
1945
2668
  onQuantityChange?: (qty: number) => void;
1946
2669
  onRemove?: () => void;
1947
- className?: string;
1948
- }): react_jsx_runtime.JSX.Element;
1949
- declare function CheckoutSummary({ subtotal, shipping, tax, total, className }: {
1950
- subtotal: string;
1951
- shipping?: string;
1952
- tax?: string;
1953
- total: string;
1954
- className?: string;
1955
- }): react_jsx_runtime.JSX.Element;
1956
- declare function PricingSlider({ tiers, className }: {
1957
- tiers: {
1958
- name: string;
1959
- price: string;
1960
- features: string[];
1961
- }[];
1962
- className?: string;
1963
- }): react_jsx_runtime.JSX.Element;
1964
- declare function InvoiceCard({ invoiceNumber, date, status, amount, client, className }: {
2670
+ }
2671
+ declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className, ...props }: CartItemProps): React$1.JSX.Element;
2672
+ interface InvoiceCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1965
2673
  invoiceNumber: string;
1966
2674
  date: string;
1967
- status: "paid" | "pending" | "overdue";
1968
- amount: string;
2675
+ status?: "paid" | "pending" | "overdue";
2676
+ amount: string | number;
1969
2677
  client: string;
1970
- className?: string;
1971
- }): react_jsx_runtime.JSX.Element;
1972
- declare function CreditCardVisual({ holder, number, expiry, type, className }: {
1973
- holder?: string;
1974
- number?: string;
1975
- expiry?: string;
1976
- type?: "visa" | "mastercard" | "amex";
1977
- className?: string;
1978
- }): react_jsx_runtime.JSX.Element;
1979
- declare function CouponCard({ code, discount, description, validUntil, className }: {
2678
+ onDownload?: () => void;
2679
+ }
2680
+ declare function InvoiceCard({ invoiceNumber, date, status, amount, client, onDownload, className, ...props }: InvoiceCardProps): React$1.JSX.Element;
2681
+ interface CouponCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1980
2682
  code: string;
1981
2683
  discount: string;
1982
2684
  description?: string;
1983
2685
  validUntil?: string;
1984
- className?: string;
1985
- }): react_jsx_runtime.JSX.Element;
1986
- declare function SubscriptionCard({ plan, price, nextBilling, status, features, className }: {
1987
- plan: string;
1988
- price: string;
1989
- nextBilling?: string;
1990
- status?: "active" | "cancelled" | "past_due";
1991
- features?: string[];
1992
- className?: string;
1993
- }): react_jsx_runtime.JSX.Element;
1994
- declare function ReviewStars({ rating, onChange, size, readonly, className }: {
2686
+ }
2687
+ declare function CouponCard({ code, discount, description, validUntil, className, ...props }: CouponCardProps): React$1.JSX.Element;
2688
+ interface PricingSliderProps extends React$1.HTMLAttributes<HTMLDivElement> {
2689
+ tiers?: {
2690
+ name: string;
2691
+ price: string | number;
2692
+ features: string[];
2693
+ }[];
2694
+ }
2695
+ declare function PricingSlider({ tiers, className, ...props }: PricingSliderProps): React$1.JSX.Element;
2696
+ declare function ReviewStars({ rating, size, reviewCount }: {
1995
2697
  rating?: number;
1996
- onChange?: (rating: number) => void;
1997
2698
  size?: number;
1998
- readonly?: boolean;
1999
- className?: string;
2000
- }): react_jsx_runtime.JSX.Element;
2001
- declare function TrustBadge({ icon, title, subtitle, className }: {
2699
+ reviewCount?: number;
2700
+ }): React$1.JSX.Element;
2701
+ declare function TrustBadge({ icon, title, subtitle, className, }: {
2002
2702
  icon?: React$1.ReactNode;
2003
- title: string;
2703
+ title?: string;
2004
2704
  subtitle?: string;
2005
2705
  className?: string;
2006
- }): react_jsx_runtime.JSX.Element;
2706
+ }): React$1.JSX.Element;
2007
2707
 
2008
2708
  interface GlowSpotlightCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2709
+ /**
2710
+ * Описание для children
2711
+ * @default undefined
2712
+ */
2009
2713
  children: React$1.ReactNode;
2714
+ /**
2715
+ * Описание для glowColor
2716
+ * @default undefined
2717
+ */
2010
2718
  glowColor?: string;
2719
+ /**
2720
+ * Описание для glowSize
2721
+ * @default undefined
2722
+ */
2011
2723
  glowSize?: number;
2012
2724
  }
2013
2725
  declare const GlowSpotlightCard: React$1.ForwardRefExoticComponent<GlowSpotlightCardProps & React$1.RefAttributes<HTMLDivElement>>;
2014
2726
  interface WordFadeRevealProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2727
+ /**
2728
+ * Описание для text
2729
+ * @default undefined
2730
+ */
2015
2731
  text: string;
2732
+ /**
2733
+ * Описание для delay
2734
+ * @default undefined
2735
+ */
2016
2736
  delay?: number;
2737
+ /**
2738
+ * Описание для delayMultiple
2739
+ * @default undefined
2740
+ */
2017
2741
  delayMultiple?: number;
2742
+ /**
2743
+ * Описание для duration
2744
+ * @default undefined
2745
+ */
2018
2746
  duration?: number;
2019
2747
  }
2020
- declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): react_jsx_runtime.JSX.Element;
2748
+ declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): React$1.JSX.Element;
2021
2749
  interface AnimatedGridBackgroundProps extends React$1.SVGProps<SVGSVGElement> {
2750
+ /**
2751
+ * Описание для width
2752
+ * @default undefined
2753
+ */
2022
2754
  width?: number;
2755
+ /**
2756
+ * Описание для height
2757
+ * @default undefined
2758
+ */
2023
2759
  height?: number;
2760
+ /**
2761
+ * Описание для strokeWidth
2762
+ * @default undefined
2763
+ */
2024
2764
  strokeWidth?: number;
2765
+ /**
2766
+ * Описание для strokeColor
2767
+ * @default undefined
2768
+ */
2025
2769
  strokeColor?: string;
2770
+ /**
2771
+ * Описание для cellFlashColor
2772
+ * @default undefined
2773
+ */
2026
2774
  cellFlashColor?: string;
2775
+ /**
2776
+ * Описание для flashInterval
2777
+ * @default undefined
2778
+ */
2027
2779
  flashInterval?: number;
2780
+ /**
2781
+ * Описание для maxFlashes
2782
+ * @default undefined
2783
+ */
2028
2784
  maxFlashes?: number;
2785
+ /**
2786
+ * Описание для className
2787
+ * @default undefined
2788
+ */
2029
2789
  className?: string;
2030
2790
  }
2031
- declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): react_jsx_runtime.JSX.Element;
2791
+ declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): React$1.JSX.Element;
2032
2792
  interface BentoGridProps extends React$1.HTMLAttributes<HTMLDivElement> {
2793
+ /**
2794
+ * Описание для children
2795
+ * @default undefined
2796
+ */
2033
2797
  children: React$1.ReactNode;
2798
+ /**
2799
+ * Описание для className
2800
+ * @default undefined
2801
+ */
2034
2802
  className?: string;
2035
2803
  }
2036
- declare function BentoGrid({ children, className, ...props }: BentoGridProps): react_jsx_runtime.JSX.Element;
2804
+ declare function BentoGrid({ children, className, ...props }: BentoGridProps): React$1.JSX.Element;
2037
2805
  interface BentoCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2806
+ /**
2807
+ * Описание для title
2808
+ * @default undefined
2809
+ */
2038
2810
  title: string;
2811
+ /**
2812
+ * Описание для description
2813
+ * @default undefined
2814
+ */
2039
2815
  description: string;
2816
+ /**
2817
+ * Описание для header
2818
+ * @default undefined
2819
+ */
2040
2820
  header?: React$1.ReactNode;
2821
+ /**
2822
+ * Описание для icon
2823
+ * @default undefined
2824
+ */
2041
2825
  icon?: React$1.ReactNode;
2826
+ /**
2827
+ * Описание для children
2828
+ * @default undefined
2829
+ */
2042
2830
  children?: React$1.ReactNode;
2831
+ /**
2832
+ * Описание для span
2833
+ * @default undefined
2834
+ */
2043
2835
  span?: string;
2836
+ /**
2837
+ * Описание для delay
2838
+ * @default undefined
2839
+ */
2044
2840
  delay?: number;
2841
+ /**
2842
+ * Описание для className
2843
+ * @default undefined
2844
+ */
2845
+ className?: string;
2846
+ }
2847
+ declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): React$1.JSX.Element;
2848
+
2849
+ type AuroraFXColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | string;
2850
+ type AuroraFXGlow = 'none' | 'subtle' | 'medium' | 'strong';
2851
+ type AuroraFXRadius = 'sm' | 'md' | 'lg' | 'xl' | 'full';
2852
+ interface AuroraColorOption {
2853
+ name: string;
2854
+ hex: string;
2855
+ }
2856
+ declare const defaultAuroraColors: AuroraColorOption[];
2857
+ interface AuroraBorderFXProps extends React$1.HTMLAttributes<HTMLDivElement> {
2858
+ /** Color preset ('violet', 'cyan', 'emerald', 'rose', 'amber') or any valid CSS hex/rgb color */
2859
+ color?: AuroraFXColor;
2860
+ /** Ambient dynamic glow intensity */
2861
+ glow?: AuroraFXGlow;
2862
+ /** Corner radius preset */
2863
+ radius?: AuroraFXRadius;
2864
+ /** Badge text displayed at the top */
2865
+ badgeText?: string;
2866
+ /** Icon displayed next to badge text */
2867
+ badgeIcon?: React$1.ReactNode;
2868
+ /** Card title */
2869
+ title?: string;
2870
+ /** Card description */
2871
+ description?: string;
2872
+ /** Whether to show the interactive color switcher */
2873
+ showColorPicker?: boolean;
2874
+ /** Custom color options for the color switcher */
2875
+ colors?: AuroraColorOption[];
2876
+ /** Controlled active color */
2877
+ activeColor?: string;
2878
+ /** Callback fired when color changes in color picker */
2879
+ onColorChange?: (colorHex: string) => void;
2880
+ /** Preview slot inside card body */
2881
+ previewSlot?: React$1.ReactNode;
2882
+ /** Footer slot at the bottom of the card */
2883
+ footerSlot?: React$1.ReactNode;
2884
+ /** Custom children — replaces standard card body if provided */
2885
+ children?: React$1.ReactNode;
2886
+ }
2887
+ /**
2888
+ * AuroraBorderFX Component
2889
+ *
2890
+ * State-of-the-art interactive card with reactive Aurora glow,
2891
+ * dynamic gradient border tracking, ambient atmospheric blur,
2892
+ * and built-in interactive color switcher.
2893
+ */
2894
+ declare const AuroraBorderFX: React$1.ForwardRefExoticComponent<AuroraBorderFXProps & React$1.RefAttributes<HTMLDivElement>>;
2895
+
2896
+ type MorphingShape = 'pill' | 'circle' | 'square' | 'squircle' | 'custom';
2897
+ type MorphingVariant = 'gradient' | 'aurora' | 'neon' | 'glass' | 'outline' | 'subtle';
2898
+ type MorphingColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | 'rainbow' | 'mono';
2899
+ type MorphingSize = 'sm' | 'md' | 'lg' | 'xl' | 'custom';
2900
+ interface MorphingGeometryProps extends Omit<HTMLMotionProps<'div'>, 'children'> {
2901
+ /** Shape geometry preset */
2902
+ shape?: MorphingShape;
2903
+ /** Explicit corner radius (in pixels or css string) when shape is custom or morphed */
2904
+ radius?: number | string;
2905
+ /** Visual surface variant style */
2906
+ variant?: MorphingVariant;
2907
+ /** Color theme palette */
2908
+ color?: MorphingColor;
2909
+ /** Standardized size preset */
2910
+ size?: MorphingSize;
2911
+ /** Custom width/height dimension in pixels if size is 'custom' */
2912
+ dimension?: number;
2913
+ /** Whether the geometry undergoes continuous slow rotation */
2914
+ spin?: boolean;
2915
+ /** Spin duration in seconds */
2916
+ spinDuration?: number;
2917
+ /** Whether clicking morphs the shape dynamically */
2918
+ interactive?: boolean;
2919
+ /** Ambient box-shadow glow intensity */
2920
+ glow?: boolean;
2921
+ /** Icon or graphic to display centered within the shape */
2922
+ icon?: React$1.ReactNode;
2923
+ /** Content rendered inside the morphing shape */
2924
+ children?: React$1.ReactNode;
2925
+ }
2926
+ /**
2927
+ * MorphingGeometry Component
2928
+ *
2929
+ * An interactive geometric entity with fluid corner transitions, dynamic physics,
2930
+ * luminous glow, and continuous ambient rotational states.
2931
+ */
2932
+ declare const MorphingGeometry: React$1.ForwardRefExoticComponent<Omit<MorphingGeometryProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2933
+
2934
+ type CodeBlockTheme = 'dark' | 'aurora' | 'neon' | 'glass' | 'midnight';
2935
+ interface InteractiveCodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onCopy'> {
2936
+ /** Source code snippet string to display */
2937
+ code: string;
2938
+ /** Filename or title displayed in the macOS titlebar */
2939
+ filename?: string;
2940
+ /** Programming language identifier */
2941
+ language?: string;
2942
+ /** Whether to show numeric line numbers */
2943
+ showLineNumbers?: boolean;
2944
+ /** Array of line numbers to highlight */
2945
+ highlightLines?: number[];
2946
+ /** Color theme styling */
2947
+ theme?: CodeBlockTheme;
2948
+ /** Whether to render the 1-click clipboard copy button */
2949
+ copyable?: boolean;
2950
+ /** Custom badge tag displayed in the header */
2951
+ badgeText?: string;
2952
+ /** Callback fired when code is copied */
2953
+ onCopy?: (code: string) => void;
2954
+ }
2955
+ /**
2956
+ * InteractiveCodeBlock Component
2957
+ *
2958
+ * A macOS-inspired code presentation card with instant 1-click copy,
2959
+ * syntax layout, line numbering, and vibrant theme styling.
2960
+ */
2961
+ declare const InteractiveCodeBlock: React$1.ForwardRefExoticComponent<InteractiveCodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
2962
+
2963
+ interface AuroraSearchSource {
2964
+ /** Unique key for the source badge */
2965
+ id: string;
2966
+ /** Label or tooltip text for the source */
2967
+ label?: string;
2968
+ /** Direct avatar image URL (e.g. favicon, PNG, SVG) */
2969
+ avatarUrl?: string;
2970
+ /** Custom icon or element */
2971
+ icon?: React$1.ReactNode;
2972
+ /** Text initials to display inside badge */
2973
+ initials?: string;
2974
+ /** Built-in preset type or custom */
2975
+ type?: 'globe' | 'gradient' | 'github' | 'claude' | 'chatgpt' | 'perplexity' | 'custom';
2976
+ /** Custom background CSS string or hex */
2977
+ bg?: string;
2978
+ }
2979
+ type AuroraSearchPillSize = 'sm' | 'md' | 'lg';
2980
+ type AuroraSearchPillSpeed = 'slow' | 'normal' | 'fast';
2981
+ type AuroraSearchPillTheme = 'light' | 'dark' | 'auto';
2982
+ type AuroraSearchPillGlow = 'subtle' | 'medium' | 'strong' | 'none';
2983
+ type AuroraSpinMode = 'always' | 'searching' | 'hover' | 'never';
2984
+ interface AuroraSearchPillProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onToggle'> {
2985
+ /** Controlled searching state */
2986
+ isSearching?: boolean;
2987
+ /** Uncontrolled default searching state */
2988
+ defaultSearching?: boolean;
2989
+ /** Callback fired when searching state toggles */
2990
+ onToggle?: (searching: boolean) => void;
2991
+ /** Main search title text shown when active (default: "Search...") */
2992
+ searchLabel?: string;
2993
+ /** List of badge sources to render in the active state */
2994
+ sources?: AuroraSearchSource[];
2995
+ /** Shortcut array of avatar image URLs */
2996
+ sourceAvatars?: string[];
2997
+ /** Color theme for the pill body: light, dark, or auto (follows dark mode) */
2998
+ theme?: AuroraSearchPillTheme;
2999
+ /** Size scale of the pill */
3000
+ size?: AuroraSearchPillSize;
3001
+ /** Glow intensity of the surrounding ambient aurora */
3002
+ glowIntensity?: AuroraSearchPillGlow;
3003
+ /** Speed of the rotating aurora beam */
3004
+ speed?: AuroraSearchPillSpeed;
3005
+ /**
3006
+ * When the aurora beam should rotate:
3007
+ * - 'always' (default): continuously rotates the aurora light wave all the time
3008
+ * - 'searching': only spins while searching/active, remains calm when idle
3009
+ * - 'hover': spins on cursor hover / focus
3010
+ * - 'never': static gradient, no rotation
3011
+ */
3012
+ spinMode?: AuroraSpinMode;
3013
+ /** Manually override spinning state */
3014
+ isSpinning?: boolean;
3015
+ /** Automatically toggle searching state at a set interval (demo mode) */
3016
+ autoCycle?: boolean;
3017
+ /** Interval in ms for autoCycle (default: 2400) */
3018
+ cycleInterval?: number;
3019
+ }
3020
+ /**
3021
+ * AuroraSearchPill Component
3022
+ *
3023
+ * An ultra-premium AI search pill with an ambient rotating aurora conic glow,
3024
+ * 1.5px illuminated border track, and smooth transition between pulsing dots and
3025
+ * active search query with source badges.
3026
+ */
3027
+ declare const AuroraSearchPill: React$1.ForwardRefExoticComponent<AuroraSearchPillProps & React$1.RefAttributes<HTMLDivElement>>;
3028
+
3029
+ interface DockProps {
3030
+ /**
3031
+ * Описание для items
3032
+ * @default undefined
3033
+ */
3034
+ items: {
3035
+ /**
3036
+ * Описание для icon
3037
+ * @default undefined
3038
+ */
3039
+ icon: React__default.ReactNode;
3040
+ /**
3041
+ * Описание для label
3042
+ * @default undefined
3043
+ */
3044
+ label: string;
3045
+ /**
3046
+ * Описание для onClick
3047
+ * @default undefined
3048
+ */
3049
+ onClick?: () => void;
3050
+ }[];
3051
+ /**
3052
+ * Описание для className
3053
+ * @default undefined
3054
+ */
3055
+ className?: string;
3056
+ /**
3057
+ * Описание для magnification
3058
+ * @default undefined
3059
+ */
3060
+ magnification?: number;
3061
+ /**
3062
+ * Описание для distance
3063
+ * @default undefined
3064
+ */
3065
+ distance?: number;
3066
+ }
3067
+ declare function Dock({ items, className, magnification, distance, }: DockProps): React__default.JSX.Element;
3068
+
3069
+ interface DarkModeToggleProps {
3070
+ theme?: "light" | "dark" | "system";
3071
+ variant?: "pill" | "icon" | "segmented";
3072
+ size?: "sm" | "md" | "lg";
3073
+ showLabel?: boolean;
3074
+ onChange?: (theme: "light" | "dark" | "system") => void;
2045
3075
  className?: string;
2046
3076
  }
2047
- declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): react_jsx_runtime.JSX.Element;
3077
+ declare function DarkModeToggle({ theme: controlledTheme, variant, size, showLabel, onChange, className, }: DarkModeToggleProps): React__default.JSX.Element;
2048
3078
 
2049
3079
  declare function cn(...inputs: ClassValue[]): string;
2050
3080
 
2051
- export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BasicModal, type BasicModalProps, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, type CommandProps, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, CreditCardVisual, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DangerModal, type DangerModalProps, DashboardGridLayout, DashboardShell, 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, type ErrorInputProps, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, type FloatingBadgeProps, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowBadge, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, type GradientOutlineBadgeProps, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, type IconBadgeProps, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveGlassModal, type InteractiveGlassModalProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalBadge, MinimalDropInput, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeonOutlineBadge, type NeonOutlineBadgeProps, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationBadge, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, type OutlineDotBadgeProps, OutlineGlowBadge, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingComparisonTable, PricingSlider, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileSettingsForm, Progress, ProgressBadge, type ProgressBadgeProps, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, type RatingProps, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, type SimpleAccordionProps, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StatusRingBadge, type StatusRingBadgeProps, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, type TagLabelProps, TaskChecklist, TestimonialCardBasic, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, 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 };
3081
+ export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, AuroraSearchPill, type AuroraSearchPillGlow, type AuroraSearchPillProps, type AuroraSearchPillSize, type AuroraSearchPillSpeed, type AuroraSearchPillTheme, type AuroraSearchSource, type AuroraSpeed, type AuroraSpinMode, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, RatingBreakdown, type RatingBreakdownProps, type RatingIconType, type RatingProps, type RatingSize, RatingStars, type RatingVariant, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewCard, type ReviewCardProps, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, type StepperSize, type StepperVariant, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };