nexoreui 0.1.3 → 0.1.6

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
@@ -774,131 +655,179 @@ interface RangeSliderInputProps {
774
655
  className?: string;
775
656
  onChange?: (value: number[]) => void;
776
657
  }
777
- declare function RangeSliderInput({ defaultValue, min, max, step, className, onChange, }: RangeSliderInputProps): react_jsx_runtime.JSX.Element;
658
+ declare function RangeSliderInput({ defaultValue, min, max, step, className, onChange, }: RangeSliderInputProps): React$1.JSX.Element;
778
659
 
779
660
  interface LoaderProps {
661
+ /**
662
+ * Описание для variant
663
+ * @default undefined
664
+ */
780
665
  variant?: "dots" | "ring" | "bars" | "pulse" | "spinner" | "wifi" | "hourglass" | "heartbeat" | "box" | "clock" | "battery" | "square-spin" | "text" | "progress-ring" | "skeleton-card" | "shimmer-block";
666
+ /**
667
+ * Описание для size
668
+ * @default undefined
669
+ */
781
670
  size?: "sm" | "md" | "lg" | number;
671
+ /**
672
+ * Описание для color
673
+ * @default undefined
674
+ */
782
675
  color?: string;
676
+ /**
677
+ * Описание для text
678
+ * @default undefined
679
+ */
783
680
  text?: string;
681
+ /**
682
+ * Описание для progress
683
+ * @default undefined
684
+ */
784
685
  progress?: number;
686
+ /**
687
+ * Описание для strokeWidth
688
+ * @default undefined
689
+ */
785
690
  strokeWidth?: number;
691
+ /**
692
+ * Описание для className
693
+ * @default undefined
694
+ */
786
695
  className?: string;
787
696
  }
788
697
  declare const WifiLoader: ({ className, color, size }: {
789
698
  className?: string;
790
699
  color?: string;
791
700
  size?: "sm" | "md" | "lg" | number;
792
- }) => react_jsx_runtime.JSX.Element;
701
+ }) => React$1.JSX.Element;
793
702
  declare const HourglassLoader: ({ className, color, size }: {
794
703
  className?: string;
795
704
  color?: string;
796
705
  size?: "sm" | "md" | "lg" | number;
797
- }) => react_jsx_runtime.JSX.Element;
706
+ }) => React$1.JSX.Element;
798
707
  declare const HeartbeatLoader: ({ className, color, size }: {
799
708
  className?: string;
800
709
  color?: string;
801
710
  size?: "sm" | "md" | "lg" | number;
802
- }) => react_jsx_runtime.JSX.Element;
711
+ }) => React$1.JSX.Element;
803
712
  declare const BoxLoader: ({ className, color, size }: {
804
713
  className?: string;
805
714
  color?: string;
806
715
  size?: "sm" | "md" | "lg" | number;
807
- }) => react_jsx_runtime.JSX.Element;
716
+ }) => React$1.JSX.Element;
808
717
  declare const BouncingBalls: ({ className, color, size }: {
809
718
  className?: string;
810
719
  color?: string;
811
720
  size?: "sm" | "md" | "lg" | number;
812
- }) => react_jsx_runtime.JSX.Element;
721
+ }) => React$1.JSX.Element;
813
722
  declare const GlowRingLoader: ({ className, color, size }: {
814
723
  className?: string;
815
724
  color?: string;
816
725
  size?: "sm" | "md" | "lg" | number;
817
- }) => react_jsx_runtime.JSX.Element;
726
+ }) => React$1.JSX.Element;
818
727
  declare const LineScaleLoader: ({ className, color, size }: {
819
728
  className?: string;
820
729
  color?: string;
821
730
  size?: "sm" | "md" | "lg" | number;
822
- }) => react_jsx_runtime.JSX.Element;
731
+ }) => React$1.JSX.Element;
823
732
  declare const ClockLoader: ({ className, color, size }: {
824
733
  className?: string;
825
734
  color?: string;
826
735
  size?: "sm" | "md" | "lg" | number;
827
- }) => react_jsx_runtime.JSX.Element;
736
+ }) => React$1.JSX.Element;
828
737
  declare const BatteryLoader: ({ className, color, size }: {
829
738
  className?: string;
830
739
  color?: string;
831
740
  size?: "sm" | "md" | "lg" | number;
832
- }) => react_jsx_runtime.JSX.Element;
741
+ }) => React$1.JSX.Element;
833
742
  declare const SquareSpinLoader: ({ className, color, size }: {
834
743
  className?: string;
835
744
  color?: string;
836
745
  size?: "sm" | "md" | "lg" | number;
837
- }) => react_jsx_runtime.JSX.Element;
746
+ }) => React$1.JSX.Element;
838
747
  declare function SpinnerLoader({ className, size, color }: {
839
748
  className?: string;
840
749
  size?: number;
841
750
  color?: string;
842
- }): react_jsx_runtime.JSX.Element;
751
+ }): React$1.JSX.Element;
843
752
  declare function DotsLoader({ className, color, size }: {
844
753
  className?: string;
845
754
  color?: string;
846
755
  size?: "sm" | "md" | "lg" | number;
847
- }): react_jsx_runtime.JSX.Element;
756
+ }): React$1.JSX.Element;
848
757
  declare function PulseLoader({ className, color, size }: {
849
758
  className?: string;
850
759
  color?: string;
851
760
  size?: "sm" | "md" | "lg" | number;
852
- }): react_jsx_runtime.JSX.Element;
761
+ }): React$1.JSX.Element;
853
762
  declare function BarLoader({ className, color, size }: {
854
763
  className?: string;
855
764
  color?: string;
856
765
  size?: "sm" | "md" | "lg" | number;
857
- }): react_jsx_runtime.JSX.Element;
766
+ }): React$1.JSX.Element;
858
767
  declare function CircleLoader({ className, size, color }: {
859
768
  className?: string;
860
769
  size?: number;
861
770
  color?: string;
862
- }): react_jsx_runtime.JSX.Element;
771
+ }): React$1.JSX.Element;
863
772
  declare function RingLoader({ className, color, size }: {
864
773
  className?: string;
865
774
  color?: string;
866
775
  size?: "sm" | "md" | "lg" | number;
867
- }): react_jsx_runtime.JSX.Element;
776
+ }): React$1.JSX.Element;
868
777
  declare function TextLoader({ text, className, color }: {
869
778
  text?: string;
870
779
  className?: string;
871
780
  color?: string;
872
- }): react_jsx_runtime.JSX.Element;
781
+ }): React$1.JSX.Element;
873
782
  declare function ProgressRing({ progress, size, strokeWidth, className, color }: {
874
783
  progress?: number;
875
784
  size?: number;
876
785
  strokeWidth?: number;
877
786
  className?: string;
878
787
  color?: string;
879
- }): react_jsx_runtime.JSX.Element;
788
+ }): React$1.JSX.Element;
880
789
  declare function SkeletonCard({ className }: {
881
790
  className?: string;
882
- }): react_jsx_runtime.JSX.Element;
791
+ }): React$1.JSX.Element;
883
792
  declare function ShimmerBlock({ className }: {
884
793
  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;
794
+ }): React$1.JSX.Element;
795
+ declare function Loader({ variant, size, color, text, progress, strokeWidth, className, }: LoaderProps): React$1.JSX.Element;
887
796
 
888
797
  interface BreadcrumbProps extends React$1.HTMLAttributes<HTMLElement> {
798
+ /**
799
+ * Описание для items
800
+ * @default undefined
801
+ */
889
802
  items: {
890
803
  label: string;
891
804
  href?: string;
892
805
  }[];
806
+ /**
807
+ * Описание для separator
808
+ * @default undefined
809
+ */
893
810
  separator?: React$1.ReactNode;
894
811
  }
895
- declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
812
+ declare function Breadcrumb({ items, separator, className, ...props }: BreadcrumbProps): React$1.JSX.Element;
896
813
  interface PaginationProps extends React$1.HTMLAttributes<HTMLElement> {
814
+ /**
815
+ * Описание для totalPages
816
+ * @default undefined
817
+ */
897
818
  totalPages: number;
819
+ /**
820
+ * Описание для currentPage
821
+ * @default undefined
822
+ */
898
823
  currentPage: number;
824
+ /**
825
+ * Описание для onPageChange
826
+ * @default undefined
827
+ */
899
828
  onPageChange?: (page: number) => void;
900
829
  }
901
- declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): react_jsx_runtime.JSX.Element;
830
+ declare function Pagination({ totalPages, currentPage, onPageChange, className, ...props }: PaginationProps): React$1.JSX.Element;
902
831
  interface Step {
903
832
  title: string;
904
833
  description?: string;
@@ -907,17 +836,17 @@ interface Step {
907
836
  declare function Steps({ items, className }: {
908
837
  items: Step[];
909
838
  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;
839
+ }): React$1.JSX.Element;
840
+ declare const SimpleNavbar: () => React$1.JSX.Element;
841
+ declare const CenteredNavbar: () => React$1.JSX.Element;
842
+ declare const GlassNavbar: () => React$1.JSX.Element;
843
+ declare const FloatingNavbar: () => React$1.JSX.Element;
844
+ declare const SidebarMenu: () => React$1.JSX.Element;
845
+ declare const BottomNav: () => React$1.JSX.Element;
846
+ declare const BreadcrumbTrail: () => React$1.JSX.Element;
847
+ declare const StepIndicator: ({ current }: any) => React$1.JSX.Element;
848
+ declare const TabMenu: () => React$1.JSX.Element;
849
+ declare const DropdownMenuVisual: () => React$1.JSX.Element;
921
850
 
922
851
  interface ScrollAreaProps extends React$1.ComponentPropsWithoutRef<typeof ScrollAreaPrimitive.Root> {
923
852
  }
@@ -931,50 +860,90 @@ declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & Re
931
860
  declare const ScrollBar: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
932
861
 
933
862
  interface BaseAnimationProps {
863
+ /**
864
+ * Описание для children
865
+ * @default undefined
866
+ */
934
867
  children: React$1.ReactNode;
868
+ /**
869
+ * Описание для delay
870
+ * @default undefined
871
+ */
935
872
  delay?: number;
873
+ /**
874
+ * Описание для duration
875
+ * @default undefined
876
+ */
936
877
  duration?: number;
937
878
  }
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;
879
+ declare const FadeIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
880
+ declare const SlideUp: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
881
+ declare const SlideDown: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
882
+ declare const SlideLeft: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
883
+ declare const SlideRight: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
884
+ declare const ScaleIn: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
885
+ declare const Bounce: ({ children, delay }: Omit<BaseAnimationProps, "duration">) => React$1.JSX.Element;
886
+ declare const Flip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
887
+ declare const Rotate: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
947
888
  declare const PulseAnim: ({ children }: {
948
889
  children: React$1.ReactNode;
949
- }) => react_jsx_runtime.JSX.Element;
890
+ }) => React$1.JSX.Element;
950
891
  declare const Float: ({ children }: {
951
892
  children: React$1.ReactNode;
952
- }) => react_jsx_runtime.JSX.Element;
893
+ }) => React$1.JSX.Element;
953
894
  declare const WiggleHover: ({ children }: {
954
895
  children: React$1.ReactNode;
955
- }) => react_jsx_runtime.JSX.Element;
896
+ }) => React$1.JSX.Element;
956
897
  declare const Heartbeat: ({ children }: {
957
898
  children: React$1.ReactNode;
958
- }) => react_jsx_runtime.JSX.Element;
959
- declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => react_jsx_runtime.JSX.Element;
899
+ }) => React$1.JSX.Element;
900
+ declare const RevealClip: ({ children, delay, duration }: BaseAnimationProps) => React$1.JSX.Element;
960
901
  declare const StaggerContainer: ({ children, delayChildren, staggerChildren }: {
961
902
  children: React$1.ReactNode;
962
903
  delayChildren?: number;
963
904
  staggerChildren?: number;
964
- }) => react_jsx_runtime.JSX.Element;
905
+ }) => React$1.JSX.Element;
965
906
  declare const StaggerItem: ({ children }: {
966
907
  children: React$1.ReactNode;
967
- }) => react_jsx_runtime.JSX.Element;
908
+ }) => React$1.JSX.Element;
968
909
  interface TypingAnimationProps {
910
+ /**
911
+ * Описание для texts
912
+ * @default undefined
913
+ */
969
914
  texts: string[];
915
+ /**
916
+ * Описание для speed
917
+ * @default undefined
918
+ */
970
919
  speed?: number;
920
+ /**
921
+ * Описание для deleteSpeed
922
+ * @default undefined
923
+ */
971
924
  deleteSpeed?: number;
925
+ /**
926
+ * Описание для pauseDuration
927
+ * @default undefined
928
+ */
972
929
  pauseDuration?: number;
930
+ /**
931
+ * Описание для loop
932
+ * @default undefined
933
+ */
973
934
  loop?: boolean;
935
+ /**
936
+ * Описание для cursor
937
+ * @default undefined
938
+ */
974
939
  cursor?: boolean;
940
+ /**
941
+ * Описание для className
942
+ * @default undefined
943
+ */
975
944
  className?: string;
976
945
  }
977
- declare function TypingAnimation({ texts, speed, deleteSpeed, pauseDuration, loop, cursor, className, }: TypingAnimationProps): react_jsx_runtime.JSX.Element;
946
+ declare function TypingAnimation({ texts, speed, deleteSpeed, pauseDuration, loop, cursor, className, }: TypingAnimationProps): React$1.JSX.Element;
978
947
 
979
948
  /**
980
949
  * Props for the BlurFade component
@@ -1109,7 +1078,7 @@ interface AnimatedNumberProps {
1109
1078
  duration?: number;
1110
1079
  formatFn?: (v: number) => string;
1111
1080
  }
1112
- declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): react_jsx_runtime.JSX.Element;
1081
+ declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): React$1.JSX.Element;
1113
1082
 
1114
1083
  /**
1115
1084
  * Props for the Rating component
@@ -1194,11 +1163,35 @@ declare const tableContainerVariants: (props?: ({
1194
1163
  variant?: "default" | "neon" | "glass" | "gradient" | "minimal" | "cyberpunk" | "aurora" | null | undefined;
1195
1164
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1196
1165
  interface TableProps extends React$1.HTMLAttributes<HTMLTableElement>, VariantProps<typeof tableContainerVariants> {
1166
+ /**
1167
+ * Описание для density
1168
+ * @default undefined
1169
+ */
1197
1170
  density?: 'compact' | 'normal' | 'spacious';
1171
+ /**
1172
+ * Описание для hoverable
1173
+ * @default undefined
1174
+ */
1198
1175
  hoverable?: boolean;
1176
+ /**
1177
+ * Описание для striped
1178
+ * @default undefined
1179
+ */
1199
1180
  striped?: boolean;
1181
+ /**
1182
+ * Описание для bordered
1183
+ * @default undefined
1184
+ */
1200
1185
  bordered?: boolean;
1186
+ /**
1187
+ * Описание для animateRows
1188
+ * @default undefined
1189
+ */
1201
1190
  animateRows?: boolean;
1191
+ /**
1192
+ * Описание для containerClassName
1193
+ * @default undefined
1194
+ */
1202
1195
  containerClassName?: string;
1203
1196
  }
1204
1197
  declare const Table: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>>;
@@ -1206,6 +1199,10 @@ declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttribu
1206
1199
  declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1207
1200
  declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1208
1201
  interface TableRowProps extends React$1.HTMLAttributes<HTMLTableRowElement> {
1202
+ /**
1203
+ * Описание для index
1204
+ * @default undefined
1205
+ */
1209
1206
  index?: number;
1210
1207
  }
1211
1208
  declare const TableRow: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
@@ -1213,11 +1210,50 @@ declare const TableHead: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttribu
1213
1210
  declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1214
1211
  declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1215
1212
  interface CustomizableTableProps extends TableProps {
1213
+ /**
1214
+ * Описание для headers
1215
+ * @default undefined
1216
+ */
1216
1217
  headers: string[];
1218
+ /**
1219
+ * Описание для rows
1220
+ * @default undefined
1221
+ */
1217
1222
  rows: React$1.ReactNode[][];
1223
+ /**
1224
+ * Описание для caption
1225
+ * @default undefined
1226
+ */
1218
1227
  caption?: string;
1219
1228
  }
1220
1229
  declare const CustomizableTable: React$1.FC<CustomizableTableProps>;
1230
+ interface DataTableColumn<T = any> {
1231
+ header: React$1.ReactNode;
1232
+ accessorKey?: keyof T | string;
1233
+ cell?: (item: T, index: number) => React$1.ReactNode;
1234
+ className?: string;
1235
+ }
1236
+ interface DataTableProps<T = any> extends TableProps {
1237
+ data?: T[];
1238
+ columns?: DataTableColumn<T>[];
1239
+ searchable?: boolean;
1240
+ searchPlaceholder?: string;
1241
+ searchKey?: keyof T | string;
1242
+ pagination?: boolean;
1243
+ pageSize?: number;
1244
+ emptyMessage?: string;
1245
+ children?: React$1.ReactNode;
1246
+ }
1247
+ declare function DataTable<T = any>({ data, columns, searchable, searchPlaceholder, searchKey, pagination, pageSize, emptyMessage, children, ...tableProps }: DataTableProps<T>): React$1.JSX.Element;
1248
+ declare const TableCompound: React$1.ForwardRefExoticComponent<TableProps & React$1.RefAttributes<HTMLTableElement>> & {
1249
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1250
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1251
+ Footer: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
1252
+ Row: React$1.ForwardRefExoticComponent<TableRowProps & React$1.RefAttributes<HTMLTableRowElement>>;
1253
+ Head: React$1.ForwardRefExoticComponent<React$1.ThHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1254
+ Cell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
1255
+ Caption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
1256
+ };
1221
1257
 
1222
1258
  /**
1223
1259
  * Representing a single step definition
@@ -1295,26 +1331,62 @@ interface CommandProps {
1295
1331
  */
1296
1332
  declare const Command: React$1.ForwardRefExoticComponent<CommandProps & React$1.RefAttributes<HTMLDivElement>>;
1297
1333
 
1298
- declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): react_jsx_runtime.JSX.Element;
1334
+ declare function Kbd({ className, children, ...props }: React$1.HTMLAttributes<HTMLElement>): React$1.JSX.Element;
1299
1335
  interface AvatarGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
1336
+ /**
1337
+ * Описание для limit
1338
+ * @default undefined
1339
+ */
1300
1340
  limit?: number;
1341
+ /**
1342
+ * Описание для items
1343
+ * @default undefined
1344
+ */
1301
1345
  items: {
1302
1346
  src?: string;
1303
1347
  fallback: string;
1304
1348
  }[];
1305
1349
  }
1306
- declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
1350
+ declare function AvatarGroup({ items, limit, className, ...props }: AvatarGroupProps): React$1.JSX.Element;
1307
1351
  interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1352
+ /**
1353
+ * Описание для title
1354
+ * @default undefined
1355
+ */
1308
1356
  title: string;
1357
+ /**
1358
+ * Описание для value
1359
+ * @default undefined
1360
+ */
1309
1361
  value: string;
1362
+ /**
1363
+ * Описание для description
1364
+ * @default undefined
1365
+ */
1310
1366
  description?: string;
1367
+ /**
1368
+ * Описание для icon
1369
+ * @default undefined
1370
+ */
1311
1371
  icon?: LucideIcon;
1372
+ /**
1373
+ * Описание для trend
1374
+ * @default undefined
1375
+ */
1312
1376
  trend?: {
1377
+ /**
1378
+ * Описание для value
1379
+ * @default undefined
1380
+ */
1313
1381
  value: string;
1382
+ /**
1383
+ * Описание для positive
1384
+ * @default undefined
1385
+ */
1314
1386
  positive: boolean;
1315
1387
  };
1316
1388
  }
1317
- declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): react_jsx_runtime.JSX.Element;
1389
+ declare function StatCard({ title, value, description, icon: Icon, trend, className, ...props }: StatCardProps): React$1.JSX.Element;
1318
1390
  interface TimelineItem {
1319
1391
  title: string;
1320
1392
  description: string;
@@ -1324,313 +1396,674 @@ interface TimelineItem {
1324
1396
  declare function Timeline({ items, className }: {
1325
1397
  items: TimelineItem[];
1326
1398
  className?: string;
1327
- }): react_jsx_runtime.JSX.Element;
1399
+ }): React$1.JSX.Element;
1328
1400
  interface CodeBlockProps extends React$1.HTMLAttributes<HTMLDivElement> {
1401
+ /**
1402
+ * Описание для code
1403
+ * @default undefined
1404
+ */
1329
1405
  code: string;
1406
+ /**
1407
+ * Описание для language
1408
+ * @default undefined
1409
+ */
1330
1410
  language?: string;
1331
1411
  }
1332
- declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): react_jsx_runtime.JSX.Element;
1412
+ declare function CodeBlock({ code, language, className, ...props }: CodeBlockProps): React$1.JSX.Element;
1333
1413
  interface PricingCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1414
+ /**
1415
+ * Описание для title
1416
+ * @default undefined
1417
+ */
1334
1418
  title: string;
1419
+ /**
1420
+ * Описание для price
1421
+ * @default undefined
1422
+ */
1335
1423
  price: string;
1424
+ /**
1425
+ * Описание для description
1426
+ * @default undefined
1427
+ */
1336
1428
  description: string;
1429
+ /**
1430
+ * Описание для features
1431
+ * @default undefined
1432
+ */
1337
1433
  features: string[];
1434
+ /**
1435
+ * Описание для buttonText
1436
+ * @default undefined
1437
+ */
1338
1438
  buttonText?: string;
1439
+ /**
1440
+ * Описание для popular
1441
+ * @default undefined
1442
+ */
1339
1443
  popular?: boolean;
1340
1444
  }
1341
- declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): react_jsx_runtime.JSX.Element;
1445
+ declare function PricingCard({ title, price, description, features, buttonText, popular, className, ...props }: PricingCardProps): React$1.JSX.Element;
1342
1446
  interface DividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1343
1447
  /**
1344
1448
  * The orientation of the divider
1345
1449
  * @default "horizontal"
1346
1450
  */
1451
+ /**
1452
+ * Описание для orientation
1453
+ * @default undefined
1454
+ */
1347
1455
  orientation?: "horizontal" | "vertical";
1348
1456
  }
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;
1457
+ declare function Divider({ orientation, className, ...props }: DividerProps): React$1.JSX.Element;
1458
+
1459
+ type AuroraVariant = 'aurora' | 'ocean' | 'sunset' | 'forest' | 'cyber' | 'gold' | 'mono';
1460
+ type AuroraSpeed = 'slow' | 'normal' | 'fast';
1461
+ type AuroraGlow = 'subtle' | 'medium' | 'strong' | 'none';
1462
+ type AuroraRadius = 'sm' | 'md' | 'lg' | 'xl';
1463
+ type AuroraAnimation = 'flow' | 'wave' | 'pulse';
1464
+ interface AuroraBorderCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1465
+ variant?: AuroraVariant;
1466
+ speed?: AuroraSpeed;
1467
+ glow?: AuroraGlow;
1468
+ borderWidth?: 1 | 2 | 3 | number;
1469
+ radius?: AuroraRadius;
1470
+ animation?: AuroraAnimation;
1471
+ title?: string;
1472
+ subtitle?: string;
1473
+ description?: string;
1474
+ badgeText?: string;
1475
+ buttonText?: string;
1476
+ buttonHref?: string;
1477
+ onButtonClick?: () => void;
1478
+ children?: React$1.ReactNode;
1479
+ }
1480
+ /**
1481
+ * AuroraBorderCard Component
1482
+ *
1483
+ * Displays a permanent visible border with a single, continuous traveling Aurora snake wave.
1484
+ * Crisp and luminous on both Light and Dark themes.
1485
+ */
1486
+ declare const AuroraBorderCard: React$1.ForwardRefExoticComponent<AuroraBorderCardProps & React$1.RefAttributes<HTMLDivElement>>;
1487
+
1488
+ interface AIModelOption {
1489
+ id: string;
1490
+ name: string;
1491
+ badge?: string;
1492
+ icon?: React$1.ElementType;
1493
+ }
1494
+ interface AttachedFile {
1495
+ id: string;
1496
+ name: string;
1497
+ size?: string;
1498
+ type?: 'image' | 'file' | 'code';
1499
+ }
1500
+ interface AiPromptInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onChange' | 'onSubmit'> {
1501
+ /**
1502
+ * Visual theme variant
1503
+ * @default "default"
1504
+ */
1505
+ variant?: 'default' | 'glow' | 'aurora' | 'glass' | 'minimal';
1506
+ /**
1507
+ * Dimension scale
1508
+ * @default "md"
1509
+ */
1510
+ size?: 'sm' | 'md' | 'lg';
1511
+ /**
1512
+ * Text prompt value (controlled)
1513
+ */
1514
+ value?: string;
1515
+ /**
1516
+ * Default text prompt value (uncontrolled)
1517
+ */
1518
+ defaultValue?: string;
1519
+ /**
1520
+ * Callback fired when text changes
1521
+ */
1522
+ onChange?: (value: string) => void;
1523
+ /**
1524
+ * Callback fired when prompt is submitted (via button or Enter key)
1525
+ */
1526
+ onSubmit?: (prompt: string, options?: {
1527
+ model?: string;
1528
+ webSearch?: boolean;
1529
+ files?: AttachedFile[];
1530
+ }) => void;
1531
+ /**
1532
+ * Textarea placeholder text
1533
+ * @default "Ask anything or describe what you want to build..."
1534
+ */
1535
+ placeholder?: string;
1536
+ /**
1537
+ * Whether the AI is currently generating a response (switches Send to Stop button)
1538
+ * @default false
1539
+ */
1540
+ isLoading?: boolean;
1541
+ /**
1542
+ * Callback fired when user clicks stop generation
1543
+ */
1544
+ onStop?: () => void;
1545
+ /**
1546
+ * List of available models in the selector dropdown
1547
+ */
1548
+ models?: AIModelOption[];
1549
+ /**
1550
+ * Currently active model ID
1551
+ */
1552
+ selectedModel?: string;
1553
+ /**
1554
+ * Callback when active model is changed
1555
+ */
1556
+ onModelChange?: (modelId: string) => void;
1557
+ /**
1558
+ * Attached files list preview
1559
+ */
1560
+ files?: AttachedFile[];
1561
+ /**
1562
+ * Callback when a file is removed
1563
+ */
1564
+ onRemoveFile?: (fileId: string) => void;
1565
+ /**
1566
+ * Callback when user clicks the attach file button
1567
+ */
1568
+ onAttachClick?: () => void;
1569
+ /**
1570
+ * Whether voice listening is active
1571
+ * @default false
1572
+ */
1573
+ isListening?: boolean;
1574
+ /**
1575
+ * Callback when microphone button is clicked
1576
+ */
1577
+ onVoiceToggle?: () => void;
1578
+ /**
1579
+ * Whether web search enhancement is enabled
1580
+ * @default false
1581
+ */
1582
+ webSearchEnabled?: boolean;
1583
+ /**
1584
+ * Callback when web search toggle is clicked
1585
+ */
1586
+ onWebSearchToggle?: () => void;
1587
+ /**
1588
+ * Whether Deep Reasoning mode is enabled
1589
+ * @default false
1590
+ */
1591
+ reasoningEnabled?: boolean;
1592
+ /**
1593
+ * Callback when Deep Reasoning mode toggle is clicked
1594
+ */
1595
+ onReasoningToggle?: () => void;
1596
+ /**
1597
+ * Disables all interactive inputs
1598
+ * @default false
1599
+ */
1600
+ disabled?: boolean;
1601
+ }
1602
+ /**
1603
+ * AiPromptInput Component
1604
+ *
1605
+ * An ultra-premium input bar for conversational and agentic AI interfaces.
1606
+ * Supports auto-expanding textarea, model selector, attachments, voice pulse,
1607
+ * web search / reasoning toggles, and SVG perimeter-traveling Aurora waves.
1608
+ */
1609
+ declare const AiPromptInput: React$1.ForwardRefExoticComponent<AiPromptInputProps & React$1.RefAttributes<HTMLDivElement>>;
1610
+
1611
+ declare const LoginFormPro: () => React$1.JSX.Element;
1612
+ declare const RegisterFormPro: () => React$1.JSX.Element;
1613
+ declare const PaymentFormPro: () => React$1.JSX.Element;
1614
+ declare const ProfileSettingsForm: () => React$1.JSX.Element;
1615
+ declare const SubscriptionForm: () => React$1.JSX.Element;
1616
+ declare const ContactFormPro: () => React$1.JSX.Element;
1617
+ declare const AdvancedSearchForm: () => React$1.JSX.Element;
1618
+ declare const FileUploadForm: () => React$1.JSX.Element;
1619
+ declare const FeedbackForm: () => React$1.JSX.Element;
1620
+ declare const InviteUsersForm: () => React$1.JSX.Element;
1621
+
1622
+ declare const ProductGallery: () => React$1.JSX.Element;
1623
+ declare const AddToCartBar: () => React$1.JSX.Element;
1624
+ declare const CartDrawerItem: () => React$1.JSX.Element | null;
1625
+ declare const OrderSummaryCard: () => React$1.JSX.Element;
1626
+ declare const PromoCodeInput: () => React$1.JSX.Element;
1627
+ declare const ShippingAddressForm: () => React$1.JSX.Element;
1628
+ declare const ProductReview: () => React$1.JSX.Element;
1629
+ declare const ColorSelector: () => React$1.JSX.Element;
1630
+ declare const SizeSelector: () => React$1.JSX.Element;
1631
+ declare const CategoryCard: () => React$1.JSX.Element;
1632
+
1633
+ declare const ChatBubbleUser: ({ message }: any) => React$1.JSX.Element;
1634
+ declare const ChatBubbleAI: ({ message }: any) => React$1.JSX.Element;
1635
+ declare const AIPromptInput: () => React$1.JSX.Element;
1636
+ declare const ThinkingLoader: () => React$1.JSX.Element;
1637
+ declare const ModelSelector: () => React$1.JSX.Element;
1638
+ declare const GeneratedCodeBlock: () => React$1.JSX.Element;
1639
+ declare const ChatHistorySidebar: () => React$1.JSX.Element;
1640
+ declare const AIFeatureCard: () => React$1.JSX.Element;
1641
+ declare const SuggestionChips: () => React$1.JSX.Element;
1642
+ declare const VoiceInputPulse: () => React$1.JSX.Element;
1643
+
1644
+ interface DataTableProColumn<T = any> {
1645
+ header: React$1.ReactNode;
1646
+ accessorKey?: keyof T | string;
1647
+ cell?: (item: T, index: number) => React$1.ReactNode;
1648
+ className?: string;
1649
+ }
1650
+ interface DataTableProProps<T = any> extends React$1.HTMLAttributes<HTMLDivElement> {
1651
+ data?: T[];
1652
+ columns?: DataTableProColumn<T>[];
1653
+ searchPlaceholder?: string;
1654
+ itemsPerPage?: number;
1655
+ showSearch?: boolean;
1656
+ showExport?: boolean;
1657
+ children?: React$1.ReactNode;
1658
+ }
1659
+ type DataTableProComponent = ((props: DataTableProProps) => React$1.ReactElement | null) & {
1660
+ Header: typeof TableHeader;
1661
+ Body: typeof TableBody;
1662
+ Footer: typeof TableFooter;
1663
+ Row: typeof TableRow;
1664
+ Head: typeof TableHead;
1665
+ Cell: typeof TableCell;
1666
+ Caption: typeof TableCaption;
1667
+ };
1668
+ declare const DataTablePro: DataTableProComponent;
1669
+ declare const InvoiceTable: () => React$1.JSX.Element;
1670
+ declare const UserDirectoryTable: () => React$1.JSX.Element;
1671
+ declare const TransactionHistory: () => React$1.JSX.Element;
1672
+ declare const FileExplorerTable: () => React$1.JSX.Element;
1673
+ declare const LeaderboardTable: () => React$1.JSX.Element;
1674
+ declare const ProductInventoryTable: () => React$1.JSX.Element;
1675
+ declare const ScheduleTable: () => React$1.JSX.Element;
1676
+ declare const PricingComparisonTable: () => React$1.JSX.Element;
1677
+ declare const CompactDataList: () => React$1.JSX.Element;
1678
+
1679
+ declare const DashboardShell: ({ children }: any) => React$1.JSX.Element;
1680
+ declare const StatWidgetCard: ({ title, value, icon: Icon, trend }: any) => React$1.JSX.Element;
1681
+ declare const ActivityFeed: () => React$1.JSX.Element;
1682
+ declare const ProgressWidget: () => React$1.JSX.Element;
1683
+ declare const QuickActionsWidget: () => React$1.JSX.Element;
1684
+ declare const TaskChecklist: () => React$1.JSX.Element;
1685
+ declare const StorageWidget: () => React$1.JSX.Element;
1686
+ declare const RevenueChartWidget: () => React$1.JSX.Element;
1687
+ declare const RecentUsersWidget: () => React$1.JSX.Element;
1688
+ declare const ServerStatusWidget: () => React$1.JSX.Element;
1689
+
1690
+ declare const FilterBar: () => React$1.JSX.Element;
1691
+ declare const LanguageSelector: () => React$1.JSX.Element;
1692
+ declare const UserMenuDropdown: () => React$1.JSX.Element;
1693
+ declare const TreeNavigation: () => React$1.JSX.Element;
1694
+ declare const ContextActionBar: () => React$1.JSX.Element;
1695
+ declare const PaginationPro: () => React$1.JSX.Element;
1696
+
1697
+ declare const ConfettiSuccess: () => React$1.JSX.Element;
1698
+ declare const ActionToast: () => React$1.JSX.Element;
1699
+ declare const MultiStepProgress: ({ current }: any) => React$1.JSX.Element;
1700
+ declare const SkeletonList: () => React$1.JSX.Element;
1701
+ declare const EmptyStatePro: () => React$1.JSX.Element;
1702
+ declare const TooltipForm: () => React$1.JSX.Element;
1703
+ declare const PasswordStrengthMeter: ({ score }: any) => React$1.JSX.Element;
1704
+ declare const UploadProgress: () => React$1.JSX.Element;
1705
+
1706
+ declare const WaitlistForm: () => React$1.JSX.Element;
1707
+ declare const PricingToggle: () => React$1.JSX.Element;
1708
+ declare const FeatureShowcase: () => React$1.JSX.Element;
1709
+ declare const TrustBanner: () => React$1.JSX.Element;
1710
+ declare const ComparisonTableMock: () => React$1.JSX.Element;
1711
+ declare const AnimatedHeroText: () => React$1.JSX.Element;
1712
+ declare const StatCounter: () => React$1.JSX.Element;
1713
+ declare const NewsletterSignup: () => React$1.JSX.Element;
1714
+ declare const VideoModalVisual: () => React$1.JSX.Element;
1715
+ declare const GradientCTABlock: () => React$1.JSX.Element;
1716
+
1717
+ declare const ContactList: () => React$1.JSX.Element;
1718
+ declare const NotificationList: () => React$1.JSX.Element;
1719
+ declare const TimelineVertical: () => React$1.JSX.Element;
1720
+ declare const StepList: () => React$1.JSX.Element;
1721
+ declare const FAQAccordionList: () => React$1.JSX.Element;
1722
+ declare const FileDownloadList: () => React$1.JSX.Element;
1723
+ declare const MessageList: () => React$1.JSX.Element;
1724
+ declare const JobBoardList: () => React$1.JSX.Element;
1725
+ declare const EventScheduleList: () => React$1.JSX.Element;
1726
+ declare const RecentCommentsList: () => React$1.JSX.Element;
1727
+
1728
+ declare const SplitScreenLayout: () => React$1.JSX.Element;
1729
+ declare const AuthenticationLayout: () => React$1.JSX.Element;
1730
+ declare const SidebarLayout: () => React$1.JSX.Element;
1731
+ declare const DashboardGridLayout: () => React$1.JSX.Element;
1732
+ declare const BentoGridVisual: () => React$1.JSX.Element;
1733
+ declare const KanbanBoardVisual: () => React$1.JSX.Element;
1734
+ declare const ChatLayoutVisual: () => React$1.JSX.Element;
1735
+ declare const FeedLayout: () => React$1.JSX.Element;
1736
+ declare const DocumentationLayout: () => React$1.JSX.Element;
1737
+ declare const HeaderFooterLayout: () => React$1.JSX.Element;
1738
+
1739
+ declare function MorphButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
1456
1740
  declare function SplitButton({ primary, secondary, onPrimary, onSecondary, className }: {
1457
1741
  primary: string;
1458
1742
  secondary: string;
1459
1743
  onPrimary?: () => void;
1460
1744
  onSecondary?: () => void;
1461
1745
  className?: string;
1462
- }): react_jsx_runtime.JSX.Element;
1746
+ }): React$1.JSX.Element;
1463
1747
  declare function CopyTextButton({ text, className }: {
1464
1748
  text: string;
1465
1749
  className?: string;
1466
- }): react_jsx_runtime.JSX.Element;
1750
+ }): React$1.JSX.Element;
1467
1751
  declare function ExpandButton({ children, icon, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1468
1752
  icon: React$1.ReactNode;
1469
- }): react_jsx_runtime.JSX.Element;
1753
+ }): React$1.JSX.Element;
1470
1754
  declare function StatusButton({ status, children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
1471
1755
  status?: "idle" | "loading" | "success" | "error";
1472
- }): react_jsx_runtime.JSX.Element;
1756
+ }): React$1.JSX.Element;
1473
1757
  declare function SegmentedButton({ options, value, onChange, className }: {
1474
1758
  options: string[];
1475
1759
  value: string;
1476
1760
  onChange: (val: string) => void;
1477
1761
  className?: string;
1478
- }): react_jsx_runtime.JSX.Element;
1479
- declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
1762
+ }): React$1.JSX.Element;
1763
+ declare function TextButton({ children, className, ...props }: React$1.ButtonHTMLAttributes<HTMLButtonElement>): React$1.JSX.Element;
1480
1764
 
1481
1765
  declare function NeumorphicCard({ children, className }: {
1482
1766
  children: React$1.ReactNode;
1483
1767
  className?: string;
1484
- }): react_jsx_runtime.JSX.Element;
1768
+ }): React$1.JSX.Element;
1485
1769
  declare function GradientMeshCard({ children, className }: {
1486
1770
  children: React$1.ReactNode;
1487
1771
  className?: string;
1488
- }): react_jsx_runtime.JSX.Element;
1772
+ }): React$1.JSX.Element;
1489
1773
  declare function TiltCard({ children, className }: {
1490
1774
  children: React$1.ReactNode;
1491
1775
  className?: string;
1492
- }): react_jsx_runtime.JSX.Element;
1776
+ }): React$1.JSX.Element;
1493
1777
  declare function FeatureCard({ icon, title, description, className }: {
1494
1778
  icon: React$1.ReactNode;
1495
1779
  title: string;
1496
1780
  description: string;
1497
1781
  className?: string;
1498
- }): react_jsx_runtime.JSX.Element;
1782
+ }): React$1.JSX.Element;
1499
1783
  declare function MetricCard({ title, value, change, changeType, className }: {
1500
1784
  title: string;
1501
1785
  value: string;
1502
1786
  change: string;
1503
1787
  changeType?: "positive" | "negative" | "neutral";
1504
1788
  className?: string;
1505
- }): react_jsx_runtime.JSX.Element;
1789
+ }): React$1.JSX.Element;
1506
1790
 
1507
1791
  declare function OTPCodeInput({ length, className, onChange }: {
1508
1792
  length?: number;
1509
1793
  className?: string;
1510
1794
  onChange?: (val: string) => void;
1511
- }): react_jsx_runtime.JSX.Element;
1795
+ }): React$1.JSX.Element;
1512
1796
  declare function TagInput({ placeholder, className }: {
1513
1797
  placeholder?: string;
1514
1798
  className?: string;
1515
- }): react_jsx_runtime.JSX.Element;
1799
+ }): React$1.JSX.Element;
1516
1800
  declare function CurrencyInput({ currency, className, ...props }: React$1.InputHTMLAttributes<HTMLInputElement> & {
1517
1801
  currency?: string;
1518
- }): react_jsx_runtime.JSX.Element;
1519
- declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): react_jsx_runtime.JSX.Element;
1802
+ }): React$1.JSX.Element;
1803
+ declare function TextareaAutosize({ className, ...props }: React$1.TextareaHTMLAttributes<HTMLTextAreaElement>): React$1.JSX.Element;
1520
1804
  declare function ColorPickerInput({ value: initial, label, className, onChange }: {
1521
1805
  value?: string;
1522
1806
  label?: string;
1523
1807
  className?: string;
1524
1808
  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;
1809
+ }): React$1.JSX.Element;
1810
+
1811
+ declare const RadioCard: ({ title, description, checked, onChange, value, name }: any) => React$1.JSX.Element;
1812
+ declare const ColorSwatch: ({ color, selected, onClick }: any) => React$1.JSX.Element;
1813
+ declare const NumberStepper: ({ value, onChange, min, max }: any) => React$1.JSX.Element;
1814
+ declare const FileDropzone: ({ onDrop }: any) => React$1.JSX.Element;
1815
+ declare const RatingStars: ({ rating, max, onRate }: any) => React$1.JSX.Element;
1816
+ declare const ToggleGroupItemWrapper: ({ children, active, onClick }: any) => React$1.JSX.Element;
1817
+ declare const ToggleGroupWrapper: ({ children }: any) => React$1.JSX.Element;
1818
+ declare const InputWithLabelOverlay: ({ label, id, ...props }: any) => React$1.JSX.Element;
1819
+ declare const VisualSelectCard: ({ icon: Icon, title, description, selected }: any) => React$1.JSX.Element;
1820
+ declare const FloatingActionForm: ({ isOpen, toggle, children }: any) => React$1.JSX.Element;
1821
+ declare const OTPInput: ({ length }: any) => React$1.JSX.Element;
1538
1822
 
1539
1823
  interface AnimatedGradientBorderProps {
1824
+ /**
1825
+ * Описание для children
1826
+ * @default undefined
1827
+ */
1540
1828
  children: React$1.ReactNode;
1829
+ /**
1830
+ * Описание для className
1831
+ * @default undefined
1832
+ */
1541
1833
  className?: string;
1834
+ /**
1835
+ * Описание для containerClassName
1836
+ * @default undefined
1837
+ */
1542
1838
  containerClassName?: string;
1839
+ /**
1840
+ * Описание для gradientClassName
1841
+ * @default undefined
1842
+ */
1543
1843
  gradientClassName?: string;
1844
+ /**
1845
+ * Описание для duration
1846
+ * @default undefined
1847
+ */
1544
1848
  duration?: number;
1545
1849
  }
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;
1850
+ declare function AnimatedGradientBorder({ children, className, containerClassName, gradientClassName, duration, }: AnimatedGradientBorderProps): React$1.JSX.Element;
1558
1851
  interface AnimatedBeamProps {
1852
+ /**
1853
+ * Описание для className
1854
+ * @default undefined
1855
+ */
1559
1856
  className?: string;
1857
+ /**
1858
+ * Описание для children
1859
+ * @default undefined
1860
+ */
1560
1861
  children: React$1.ReactNode;
1561
1862
  }
1562
- declare function AnimatedBeam({ className, children }: AnimatedBeamProps): react_jsx_runtime.JSX.Element;
1863
+ declare function AnimatedBeam({ className, children }: AnimatedBeamProps): React$1.JSX.Element;
1563
1864
  interface ShinyTextProps {
1865
+ /**
1866
+ * Описание для children
1867
+ * @default undefined
1868
+ */
1564
1869
  children: React$1.ReactNode;
1870
+ /**
1871
+ * Описание для className
1872
+ * @default undefined
1873
+ */
1565
1874
  className?: string;
1875
+ /**
1876
+ * Описание для shimmerWidth
1877
+ * @default undefined
1878
+ */
1566
1879
  shimmerWidth?: number;
1567
1880
  }
1568
- declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): react_jsx_runtime.JSX.Element;
1881
+ declare function ShinyText({ children, className, shimmerWidth, }: ShinyTextProps): React$1.JSX.Element;
1569
1882
  interface RetroGridProps {
1883
+ /**
1884
+ * Описание для className
1885
+ * @default undefined
1886
+ */
1570
1887
  className?: string;
1888
+ /**
1889
+ * Описание для angle
1890
+ * @default undefined
1891
+ */
1571
1892
  angle?: number;
1572
1893
  }
1573
- declare function RetroGrid({ className, angle }: RetroGridProps): react_jsx_runtime.JSX.Element;
1894
+ declare function RetroGrid({ className, angle }: RetroGridProps): React$1.JSX.Element;
1574
1895
  interface MeteorsProps {
1896
+ /**
1897
+ * Описание для number
1898
+ * @default undefined
1899
+ */
1575
1900
  number?: number;
1901
+ /**
1902
+ * Описание для className
1903
+ * @default undefined
1904
+ */
1576
1905
  className?: string;
1577
1906
  }
1578
- declare function Meteors({ number, className }: MeteorsProps): react_jsx_runtime.JSX.Element;
1907
+ declare function Meteors({ number, className }: MeteorsProps): React$1.JSX.Element;
1579
1908
 
1580
1909
  interface MorphingTextProps {
1910
+ /**
1911
+ * Описание для texts
1912
+ * @default undefined
1913
+ */
1581
1914
  texts: string[];
1915
+ /**
1916
+ * Описание для className
1917
+ * @default undefined
1918
+ */
1582
1919
  className?: string;
1920
+ /**
1921
+ * Описание для interval
1922
+ * @default undefined
1923
+ */
1583
1924
  interval?: number;
1584
1925
  }
1585
- declare function MorphingText({ texts, className, interval, }: MorphingTextProps): react_jsx_runtime.JSX.Element;
1926
+ declare function MorphingText({ texts, className, interval, }: MorphingTextProps): React$1.JSX.Element;
1586
1927
  interface AnimatedListProps {
1928
+ /**
1929
+ * Описание для children
1930
+ * @default undefined
1931
+ */
1587
1932
  children: React$1.ReactNode;
1933
+ /**
1934
+ * Описание для className
1935
+ * @default undefined
1936
+ */
1588
1937
  className?: string;
1938
+ /**
1939
+ * Описание для delay
1940
+ * @default undefined
1941
+ */
1589
1942
  delay?: number;
1590
1943
  }
1591
- declare function AnimatedList({ children, className, delay, }: AnimatedListProps): react_jsx_runtime.JSX.Element;
1944
+ declare function AnimatedList({ children, className, delay, }: AnimatedListProps): React$1.JSX.Element;
1592
1945
 
1593
1946
  interface InteractiveHoverButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1947
+ /**
1948
+ * Описание для text
1949
+ * @default undefined
1950
+ */
1594
1951
  text?: string;
1952
+ /**
1953
+ * Описание для className
1954
+ * @default undefined
1955
+ */
1595
1956
  className?: string;
1596
1957
  }
1597
- declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): react_jsx_runtime.JSX.Element;
1958
+ declare function InteractiveHoverButton({ text, className, ...props }: InteractiveHoverButtonProps): React$1.JSX.Element;
1598
1959
  interface PulsatingButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1960
+ /**
1961
+ * Описание для pulseColor
1962
+ * @default undefined
1963
+ */
1599
1964
  pulseColor?: string;
1965
+ /**
1966
+ * Описание для duration
1967
+ * @default undefined
1968
+ */
1600
1969
  duration?: string;
1970
+ /**
1971
+ * Описание для className
1972
+ * @default undefined
1973
+ */
1601
1974
  className?: string;
1602
1975
  }
1603
- declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): react_jsx_runtime.JSX.Element;
1976
+ declare function PulsatingButton({ className, children, pulseColor, duration, ...props }: PulsatingButtonProps): React$1.JSX.Element;
1604
1977
  interface RainbowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1978
+ /**
1979
+ * Описание для className
1980
+ * @default undefined
1981
+ */
1605
1982
  className?: string;
1606
1983
  }
1607
- declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): react_jsx_runtime.JSX.Element;
1984
+ declare function RainbowButton({ children, className, ...props }: RainbowButtonProps): React$1.JSX.Element;
1608
1985
  interface CoolModeProps {
1986
+ /**
1987
+ * Описание для children
1988
+ * @default undefined
1989
+ */
1609
1990
  children: React$1.ReactElement;
1991
+ /**
1992
+ * Описание для className
1993
+ * @default undefined
1994
+ */
1610
1995
  className?: string;
1611
1996
  }
1612
- declare function CoolMode({ children, className }: CoolModeProps): react_jsx_runtime.JSX.Element;
1997
+ declare function CoolMode({ children, className }: CoolModeProps): React$1.JSX.Element;
1613
1998
  interface WordPullUpProps {
1999
+ /**
2000
+ * Описание для words
2001
+ * @default undefined
2002
+ */
1614
2003
  words: string;
2004
+ /**
2005
+ * Описание для className
2006
+ * @default undefined
2007
+ */
1615
2008
  className?: string;
2009
+ /**
2010
+ * Описание для delayMultiple
2011
+ * @default undefined
2012
+ */
1616
2013
  delayMultiple?: number;
1617
2014
  }
1618
- declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): react_jsx_runtime.JSX.Element;
2015
+ declare function WordPullUp({ words, className, delayMultiple, }: WordPullUpProps): React$1.JSX.Element;
1619
2016
  interface BoxRevealProps {
2017
+ /**
2018
+ * Описание для children
2019
+ * @default undefined
2020
+ */
1620
2021
  children: React$1.ReactNode;
2022
+ /**
2023
+ * Описание для className
2024
+ * @default undefined
2025
+ */
1621
2026
  className?: string;
2027
+ /**
2028
+ * Описание для boxColor
2029
+ * @default undefined
2030
+ */
1622
2031
  boxColor?: string;
2032
+ /**
2033
+ * Описание для duration
2034
+ * @default undefined
2035
+ */
1623
2036
  duration?: number;
2037
+ /**
2038
+ * Описание для delay
2039
+ * @default undefined
2040
+ */
1624
2041
  delay?: number;
1625
2042
  }
1626
- declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): react_jsx_runtime.JSX.Element;
2043
+ declare function BoxReveal({ children, className, boxColor, duration, delay, }: BoxRevealProps): React$1.JSX.Element;
1627
2044
  interface TextShimmerProps {
2045
+ /**
2046
+ * Описание для children
2047
+ * @default undefined
2048
+ */
1628
2049
  children: React$1.ReactNode;
2050
+ /**
2051
+ * Описание для className
2052
+ * @default undefined
2053
+ */
1629
2054
  className?: string;
2055
+ /**
2056
+ * Описание для duration
2057
+ * @default undefined
2058
+ */
1630
2059
  duration?: number;
2060
+ /**
2061
+ * Описание для spread
2062
+ * @default undefined
2063
+ */
1631
2064
  spread?: number;
1632
2065
  }
1633
- declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): react_jsx_runtime.JSX.Element;
2066
+ declare function TextShimmer({ children, className, duration, spread, }: TextShimmerProps): React$1.JSX.Element;
1634
2067
 
1635
2068
  interface DrawerProps {
1636
2069
  /** Whether the drawer is open */
@@ -1646,7 +2079,7 @@ interface DrawerProps {
1646
2079
  /** Title for the drawer header */
1647
2080
  title?: string;
1648
2081
  }
1649
- declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): react_jsx_runtime.JSX.Element;
2082
+ declare function Drawer({ open, onClose, side, children, className, title, }: DrawerProps): React$1.JSX.Element;
1650
2083
  interface CommandPaletteItem {
1651
2084
  /** Unique identifier */
1652
2085
  id: string;
@@ -1671,7 +2104,7 @@ interface CommandPaletteProps {
1671
2104
  /** Additional CSS classes */
1672
2105
  className?: string;
1673
2106
  }
1674
- declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element;
2107
+ declare function CommandPalette({ open, onClose, items, placeholder, className, }: CommandPaletteProps): React$1.JSX.Element;
1675
2108
  interface ContextMenuItem {
1676
2109
  /** Display label */
1677
2110
  label: string;
@@ -1694,7 +2127,7 @@ interface ContextMenuProps {
1694
2127
  /** Additional CSS classes */
1695
2128
  className?: string;
1696
2129
  }
1697
- declare function ContextMenu({ items, children, className }: ContextMenuProps): react_jsx_runtime.JSX.Element;
2130
+ declare function ContextMenu({ items, children, className }: ContextMenuProps): React$1.JSX.Element;
1698
2131
 
1699
2132
  declare function ImageCarousel({ images, autoPlay, interval, className }: {
1700
2133
  images: {
@@ -1704,57 +2137,57 @@ declare function ImageCarousel({ images, autoPlay, interval, className }: {
1704
2137
  autoPlay?: boolean;
1705
2138
  interval?: number;
1706
2139
  className?: string;
1707
- }): react_jsx_runtime.JSX.Element;
2140
+ }): React$1.JSX.Element;
1708
2141
  declare function VideoPlayer({ title, duration, thumbnail, className }: {
1709
2142
  title?: string;
1710
2143
  duration?: string;
1711
2144
  thumbnail?: string;
1712
2145
  className?: string;
1713
- }): react_jsx_runtime.JSX.Element;
2146
+ }): React$1.JSX.Element;
1714
2147
  declare function AudioWaveform({ playing, bars, className }: {
1715
2148
  playing?: boolean;
1716
2149
  bars?: number;
1717
2150
  className?: string;
1718
- }): react_jsx_runtime.JSX.Element;
2151
+ }): React$1.JSX.Element;
1719
2152
  declare function FilePreviewCard({ name, size, type, className }: {
1720
2153
  name: string;
1721
2154
  size: string;
1722
2155
  type?: "file" | "image" | "video" | "pdf" | "code";
1723
2156
  className?: string;
1724
- }): react_jsx_runtime.JSX.Element;
2157
+ }): React$1.JSX.Element;
1725
2158
  declare function EmbedCard({ title, description, domain, favicon, className }: {
1726
2159
  title: string;
1727
2160
  description?: string;
1728
2161
  domain: string;
1729
2162
  favicon?: string;
1730
2163
  className?: string;
1731
- }): react_jsx_runtime.JSX.Element;
2164
+ }): React$1.JSX.Element;
1732
2165
  declare function MusicPlayer({ title, artist, album, className }: {
1733
2166
  title: string;
1734
2167
  artist: string;
1735
2168
  album?: string;
1736
2169
  className?: string;
1737
- }): react_jsx_runtime.JSX.Element;
2170
+ }): React$1.JSX.Element;
1738
2171
  declare function ImageCompare({ leftImage, rightImage, leftLabel, rightLabel, className }: {
1739
2172
  leftImage?: string;
1740
2173
  rightImage?: string;
1741
2174
  leftLabel?: string;
1742
2175
  rightLabel?: string;
1743
2176
  className?: string;
1744
- }): react_jsx_runtime.JSX.Element;
2177
+ }): React$1.JSX.Element;
1745
2178
  declare function GalleryGrid({ items, className }: {
1746
2179
  items: {
1747
2180
  title: string;
1748
2181
  color?: string;
1749
2182
  }[];
1750
2183
  className?: string;
1751
- }): react_jsx_runtime.JSX.Element;
2184
+ }): React$1.JSX.Element;
1752
2185
  declare function CodeSnippet({ code, language, filename, className }: {
1753
2186
  code: string;
1754
2187
  language?: string;
1755
2188
  filename?: string;
1756
2189
  className?: string;
1757
- }): react_jsx_runtime.JSX.Element;
2190
+ }): React$1.JSX.Element;
1758
2191
  declare function TestimonialCarousel({ testimonials, className }: {
1759
2192
  testimonials: {
1760
2193
  quote: string;
@@ -1762,7 +2195,7 @@ declare function TestimonialCarousel({ testimonials, className }: {
1762
2195
  role: string;
1763
2196
  }[];
1764
2197
  className?: string;
1765
- }): react_jsx_runtime.JSX.Element;
2198
+ }): React$1.JSX.Element;
1766
2199
 
1767
2200
  declare function DonutChart({ value, max, size, strokeWidth, color, label, className }: {
1768
2201
  value: number;
@@ -1772,7 +2205,7 @@ declare function DonutChart({ value, max, size, strokeWidth, color, label, class
1772
2205
  color?: string;
1773
2206
  label?: string;
1774
2207
  className?: string;
1775
- }): react_jsx_runtime.JSX.Element;
2208
+ }): React$1.JSX.Element;
1776
2209
  declare function BarChartSimple({ data, height, className }: {
1777
2210
  data: {
1778
2211
  label: string;
@@ -1781,13 +2214,13 @@ declare function BarChartSimple({ data, height, className }: {
1781
2214
  }[];
1782
2215
  height?: number;
1783
2216
  className?: string;
1784
- }): react_jsx_runtime.JSX.Element;
2217
+ }): React$1.JSX.Element;
1785
2218
  declare function AreaChartSimple({ data, height, color, className }: {
1786
2219
  data: number[];
1787
2220
  height?: number;
1788
2221
  color?: string;
1789
2222
  className?: string;
1790
- }): react_jsx_runtime.JSX.Element;
2223
+ }): React$1.JSX.Element;
1791
2224
  declare function StatWidget({ title, value, change, changeType, data, className }: {
1792
2225
  title: string;
1793
2226
  value: string;
@@ -1795,25 +2228,25 @@ declare function StatWidget({ title, value, change, changeType, data, className
1795
2228
  changeType?: "positive" | "negative";
1796
2229
  data?: number[];
1797
2230
  className?: string;
1798
- }): react_jsx_runtime.JSX.Element;
2231
+ }): React$1.JSX.Element;
1799
2232
  declare function ProgressCircle({ value, size, label, className }: {
1800
2233
  value: number;
1801
2234
  size?: number;
1802
2235
  label?: string;
1803
2236
  className?: string;
1804
- }): react_jsx_runtime.JSX.Element;
2237
+ }): React$1.JSX.Element;
1805
2238
  declare function ComparisonBar({ label1, label2, value1, value2, className }: {
1806
2239
  label1: string;
1807
2240
  label2: string;
1808
2241
  value1: number;
1809
2242
  value2: number;
1810
2243
  className?: string;
1811
- }): react_jsx_runtime.JSX.Element;
2244
+ }): React$1.JSX.Element;
1812
2245
  declare function HeatmapGrid({ data, columns, className }: {
1813
2246
  data: number[];
1814
2247
  columns?: number;
1815
2248
  className?: string;
1816
- }): react_jsx_runtime.JSX.Element;
2249
+ }): React$1.JSX.Element;
1817
2250
  declare function LeaderboardWidget({ items, title, className }: {
1818
2251
  items: {
1819
2252
  name: string;
@@ -1822,7 +2255,7 @@ declare function LeaderboardWidget({ items, title, className }: {
1822
2255
  }[];
1823
2256
  title?: string;
1824
2257
  className?: string;
1825
- }): react_jsx_runtime.JSX.Element;
2258
+ }): React$1.JSX.Element;
1826
2259
  declare function FunnelChart({ steps, className }: {
1827
2260
  steps: {
1828
2261
  label: string;
@@ -1830,7 +2263,7 @@ declare function FunnelChart({ steps, className }: {
1830
2263
  color?: string;
1831
2264
  }[];
1832
2265
  className?: string;
1833
- }): react_jsx_runtime.JSX.Element;
2266
+ }): React$1.JSX.Element;
1834
2267
  declare function KPIDashboard({ metrics, className }: {
1835
2268
  metrics: {
1836
2269
  label: string;
@@ -1840,212 +2273,683 @@ declare function KPIDashboard({ metrics, className }: {
1840
2273
  trendType?: "up" | "down";
1841
2274
  }[];
1842
2275
  className?: string;
1843
- }): react_jsx_runtime.JSX.Element;
2276
+ }): React$1.JSX.Element;
2277
+ interface ModernAreaChartProps {
2278
+ data?: {
2279
+ label: string;
2280
+ value: number;
2281
+ }[];
2282
+ color?: string;
2283
+ height?: number;
2284
+ showGrid?: boolean;
2285
+ showTooltip?: boolean;
2286
+ currency?: string;
2287
+ className?: string;
2288
+ }
2289
+ declare function ModernAreaChart({ data, color, height, showGrid, showTooltip, currency, className, }: ModernAreaChartProps): React$1.JSX.Element;
2290
+ interface ModernBarChartProps {
2291
+ data?: {
2292
+ label: string;
2293
+ value: number;
2294
+ }[];
2295
+ color?: string;
2296
+ height?: number;
2297
+ className?: string;
2298
+ }
2299
+ declare function ModernBarChart({ data, color, height, className, }: ModernBarChartProps): React$1.JSX.Element;
2300
+ interface ModernDonutChartProps {
2301
+ percentage?: number;
2302
+ title?: string;
2303
+ subtitle?: string;
2304
+ color?: string;
2305
+ size?: number;
2306
+ strokeWidth?: number;
2307
+ className?: string;
2308
+ }
2309
+ declare function ModernDonutChart({ percentage, title, subtitle, color, size, strokeWidth, className, }: ModernDonutChartProps): React$1.JSX.Element;
1844
2310
 
1845
- declare function ChatMessage({ message, sender, time, avatar, isOwn, className }: {
1846
- message: string;
1847
- sender: string;
2311
+ interface ChatMessageContextValue {
2312
+ variant: 'sent' | 'received';
2313
+ isOwn: boolean;
2314
+ }
2315
+ interface ChatMessageProps extends React$1.HTMLAttributes<HTMLDivElement> {
2316
+ variant?: 'sent' | 'received';
2317
+ isOwn?: boolean;
2318
+ message?: string;
2319
+ sender?: string;
1848
2320
  time?: string;
1849
2321
  avatar?: string;
1850
- isOwn?: boolean;
1851
- className?: string;
1852
- }): react_jsx_runtime.JSX.Element;
1853
- declare function ChatInput({ placeholder, onSend, className }: {
2322
+ children?: React$1.ReactNode;
2323
+ }
2324
+ declare const ChatMessage: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>>;
2325
+ interface ChatMessageAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2326
+ src?: string;
2327
+ fallback?: string;
2328
+ isOnline?: boolean;
2329
+ }
2330
+ declare const ChatMessageAvatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2331
+ declare const ChatMessageBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2332
+ declare const ChatMessageHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2333
+ declare const ChatMessageSender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2334
+ declare const ChatMessageTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2335
+ interface ChatMessageContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
2336
+ variant?: 'sent' | 'received';
2337
+ }
2338
+ declare const ChatMessageContent: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
2339
+ interface ChatMessageStatusProps extends React$1.HTMLAttributes<HTMLSpanElement> {
2340
+ status?: 'sent' | 'delivered' | 'read';
2341
+ }
2342
+ declare const ChatMessageStatus: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
2343
+ declare const ChatMessageCompound: React$1.ForwardRefExoticComponent<ChatMessageProps & React$1.RefAttributes<HTMLDivElement>> & {
2344
+ Avatar: React$1.ForwardRefExoticComponent<ChatMessageAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2345
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2346
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2347
+ Sender: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2348
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2349
+ Content: React$1.ForwardRefExoticComponent<ChatMessageContentProps & React$1.RefAttributes<HTMLDivElement>>;
2350
+ Status: React$1.ForwardRefExoticComponent<ChatMessageStatusProps & React$1.RefAttributes<HTMLSpanElement>>;
2351
+ };
2352
+ interface ChatInputProps extends React$1.HTMLAttributes<HTMLDivElement> {
1854
2353
  placeholder?: string;
1855
2354
  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;
2355
+ children?: React$1.ReactNode;
2356
+ }
2357
+ declare const ChatInput: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>>;
2358
+ declare const ChatInputField: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
2359
+ declare const ChatInputActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2360
+ interface ChatInputActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2361
+ icon?: React$1.ReactNode;
2362
+ }
2363
+ declare const ChatInputAction: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2364
+ interface ChatInputSubmitProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2365
+ disabled?: boolean;
2366
+ }
2367
+ declare const ChatInputSubmit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
2368
+ declare const ChatInputCompound: React$1.ForwardRefExoticComponent<ChatInputProps & React$1.RefAttributes<HTMLDivElement>> & {
2369
+ Field: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
2370
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2371
+ Action: React$1.ForwardRefExoticComponent<ChatInputActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2372
+ Submit: React$1.ForwardRefExoticComponent<ChatInputSubmitProps & React$1.RefAttributes<HTMLButtonElement>>;
2373
+ };
2374
+ interface UserProfileCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2375
+ name?: string;
2376
+ username?: string;
1861
2377
  bio?: string;
1862
2378
  stats?: {
1863
2379
  label: string;
1864
2380
  value: string;
1865
2381
  }[];
1866
2382
  isFollowing?: boolean;
1867
- className?: string;
1868
- }): react_jsx_runtime.JSX.Element;
1869
- declare function CommentThread({ comments, className }: {
1870
- comments: {
2383
+ avatar?: string;
2384
+ coverGradient?: string;
2385
+ children?: React$1.ReactNode;
2386
+ }
2387
+ declare const UserProfileCard: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>>;
2388
+ interface UserProfileCoverProps extends React$1.HTMLAttributes<HTMLDivElement> {
2389
+ gradient?: string;
2390
+ imageSrc?: string;
2391
+ }
2392
+ declare const UserProfileCover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
2393
+ interface UserProfileAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2394
+ src?: string;
2395
+ fallback?: string;
2396
+ status?: 'online' | 'busy' | 'offline';
2397
+ }
2398
+ declare const UserProfileAvatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2399
+ declare const UserProfileInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2400
+ declare const UserProfileName: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
2401
+ declare const UserProfileHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2402
+ declare const UserProfileBio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2403
+ declare const UserProfileStats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2404
+ interface UserProfileStatProps extends React$1.HTMLAttributes<HTMLDivElement> {
2405
+ label: string;
2406
+ value: string;
2407
+ }
2408
+ declare const UserProfileStat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
2409
+ interface UserProfileFollowButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2410
+ following?: boolean;
2411
+ }
2412
+ declare const UserProfileFollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2413
+ declare const UserProfileCardCompound: React$1.ForwardRefExoticComponent<UserProfileCardProps & React$1.RefAttributes<HTMLDivElement>> & {
2414
+ Cover: React$1.ForwardRefExoticComponent<UserProfileCoverProps & React$1.RefAttributes<HTMLDivElement>>;
2415
+ Avatar: React$1.ForwardRefExoticComponent<UserProfileAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2416
+ Info: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2417
+ Name: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
2418
+ Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2419
+ Bio: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2420
+ Stats: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2421
+ Stat: React$1.ForwardRefExoticComponent<UserProfileStatProps & React$1.RefAttributes<HTMLDivElement>>;
2422
+ FollowButton: React$1.ForwardRefExoticComponent<UserProfileFollowButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2423
+ };
2424
+ interface CommentData {
2425
+ author: string;
2426
+ text: string;
2427
+ time: string;
2428
+ avatar?: string;
2429
+ replies?: {
1871
2430
  author: string;
1872
2431
  text: string;
1873
2432
  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;
2433
+ avatar?: string;
1887
2434
  }[];
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;
2435
+ }
2436
+ interface CommentThreadProps extends React$1.HTMLAttributes<HTMLDivElement> {
2437
+ comments?: CommentData[];
2438
+ children?: React$1.ReactNode;
2439
+ }
2440
+ declare const CommentThread: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>>;
2441
+ declare const CommentItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2442
+ interface CommentAvatarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2443
+ src?: string;
2444
+ fallback?: string;
2445
+ size?: 'sm' | 'md';
2446
+ }
2447
+ declare const CommentAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2448
+ declare const CommentBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2449
+ declare const CommentHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2450
+ declare const CommentAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2451
+ declare const CommentTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2452
+ declare const CommentText: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2453
+ declare const CommentActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2454
+ declare const CommentReply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2455
+ declare const CommentThreadCompound: React$1.ForwardRefExoticComponent<CommentThreadProps & React$1.RefAttributes<HTMLDivElement>> & {
2456
+ Item: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2457
+ Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2458
+ Body: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2459
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2460
+ Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2461
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2462
+ Text: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2463
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2464
+ Reply: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2465
+ };
2466
+ interface SocialPostProps extends React$1.HTMLAttributes<HTMLDivElement> {
2467
+ author?: string;
2468
+ handle?: string;
2469
+ content?: string;
2470
+ time?: string;
2471
+ avatar?: string;
1904
2472
  likes?: number;
1905
2473
  comments?: number;
1906
2474
  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 }: {
2475
+ children?: React$1.ReactNode;
2476
+ }
2477
+ declare const SocialPost: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>>;
2478
+ declare const SocialPostHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2479
+ declare const SocialPostAvatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2480
+ declare const SocialPostAuthor: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2481
+ declare const SocialPostHandle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2482
+ declare const SocialPostTime: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2483
+ declare const SocialPostContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2484
+ declare const SocialPostActions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2485
+ interface SocialPostActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2486
+ icon?: React$1.ReactNode;
2487
+ label?: React$1.ReactNode;
2488
+ active?: boolean;
2489
+ }
2490
+ declare const SocialPostAction: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2491
+ declare const SocialPostCompound: React$1.ForwardRefExoticComponent<SocialPostProps & React$1.RefAttributes<HTMLDivElement>> & {
2492
+ Header: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2493
+ Avatar: React$1.ForwardRefExoticComponent<CommentAvatarProps & React$1.RefAttributes<HTMLDivElement>>;
2494
+ Author: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2495
+ Handle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2496
+ Time: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLSpanElement> & React$1.RefAttributes<HTMLSpanElement>>;
2497
+ Content: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
2498
+ Actions: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
2499
+ Action: React$1.ForwardRefExoticComponent<SocialPostActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2500
+ };
2501
+ interface ReactionData {
2502
+ emoji: string;
2503
+ count: number;
2504
+ active?: boolean;
2505
+ }
2506
+ interface ReactionBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
2507
+ reactions?: ReactionData[];
2508
+ onReact?: (emoji: string) => void;
2509
+ children?: React$1.ReactNode;
2510
+ }
2511
+ declare const ReactionBar: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>>;
2512
+ interface ReactionItemProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
2513
+ emoji: string;
2514
+ count: number;
2515
+ active?: boolean;
2516
+ }
2517
+ declare const ReactionItem: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2518
+ declare const ReactionAdd: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
2519
+ onAdd?: () => void;
2520
+ } & React$1.RefAttributes<HTMLButtonElement>>;
2521
+ declare const ReactionBarCompound: React$1.ForwardRefExoticComponent<ReactionBarProps & React$1.RefAttributes<HTMLDivElement>> & {
2522
+ Item: React$1.ForwardRefExoticComponent<ReactionItemProps & React$1.RefAttributes<HTMLButtonElement>>;
2523
+ Add: React$1.ForwardRefExoticComponent<React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
2524
+ onAdd?: () => void;
2525
+ } & React$1.RefAttributes<HTMLButtonElement>>;
2526
+ };
2527
+ interface ActivityItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
2528
+ user?: string;
2529
+ action?: string;
2530
+ target?: string;
2531
+ time?: string;
2532
+ icon?: React$1.ReactNode;
2533
+ children?: React$1.ReactNode;
2534
+ }
2535
+ declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps & React$1.RefAttributes<HTMLDivElement>>;
2536
+ interface OnlineUserData {
2537
+ name: string;
2538
+ status?: 'online' | 'away' | 'busy' | 'offline';
2539
+ avatar?: string;
2540
+ }
2541
+ interface OnlineUsersListProps extends React$1.HTMLAttributes<HTMLDivElement> {
2542
+ users?: OnlineUserData[];
2543
+ children?: React$1.ReactNode;
2544
+ }
2545
+ declare const OnlineUsersList: React$1.ForwardRefExoticComponent<OnlineUsersListProps & React$1.RefAttributes<HTMLDivElement>>;
2546
+ interface ShareSheetProps extends React$1.HTMLAttributes<HTMLDivElement> {
1917
2547
  url?: string;
1918
2548
  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;
2549
+ children?: React$1.ReactNode;
2550
+ }
2551
+ declare const ShareSheet: React$1.ForwardRefExoticComponent<ShareSheetProps & React$1.RefAttributes<HTMLDivElement>>;
2552
+ interface NotificationItemData {
2553
+ title: string;
2554
+ message: string;
2555
+ time: string;
2556
+ read?: boolean;
2557
+ type?: 'info' | 'success' | 'warning';
2558
+ }
2559
+ interface NotificationCenterProps extends React$1.HTMLAttributes<HTMLDivElement> {
2560
+ notifications?: NotificationItemData[];
2561
+ onMarkAllRead?: () => void;
2562
+ children?: React$1.ReactNode;
2563
+ }
2564
+ declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLDivElement>>;
1931
2565
 
1932
- declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, className }: {
2566
+ interface ProductCardProProps extends React$1.HTMLAttributes<HTMLDivElement> {
1933
2567
  name: string;
1934
- price: string;
1935
- originalPrice?: string;
2568
+ price: string | number;
2569
+ originalPrice?: string | number;
1936
2570
  badge?: string;
1937
2571
  rating?: number;
1938
2572
  reviewCount?: number;
1939
- className?: string;
1940
- }): react_jsx_runtime.JSX.Element;
1941
- declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className }: {
2573
+ imageSrc?: string;
2574
+ colors?: string[];
2575
+ onAddToCart?: () => void;
2576
+ }
2577
+ declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2578
+ interface CheckoutSummaryProps extends React$1.HTMLAttributes<HTMLDivElement> {
2579
+ subtotal: string | number;
2580
+ shipping?: string;
2581
+ tax?: string | number;
2582
+ total: string | number;
2583
+ onCheckout?: () => void;
2584
+ }
2585
+ declare function CheckoutSummary({ subtotal, shipping, tax, total, onCheckout, className, ...props }: CheckoutSummaryProps): React$1.JSX.Element;
2586
+ interface SubscriptionCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2587
+ plan: string;
2588
+ price: string | number;
2589
+ billingPeriod?: string;
2590
+ nextBilling?: string;
2591
+ status?: "active" | "cancelled" | "past_due";
2592
+ features?: string[];
2593
+ isPopular?: boolean;
2594
+ onUpgrade?: () => void;
2595
+ }
2596
+ declare function SubscriptionCard({ plan, price, billingPeriod, nextBilling, status, features, isPopular, onUpgrade, className, ...props }: SubscriptionCardProps): React$1.JSX.Element;
2597
+ interface CreditCardVisualProps extends React$1.HTMLAttributes<HTMLDivElement> {
2598
+ holder?: string;
2599
+ number?: string;
2600
+ expiry?: string;
2601
+ type?: "visa" | "mastercard" | "amex";
2602
+ }
2603
+ declare function CreditCardVisual({ holder, number, expiry, type, className, ...props }: CreditCardVisualProps): React$1.JSX.Element;
2604
+ interface CartItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1942
2605
  name: string;
1943
- price: string;
2606
+ price: string | number;
1944
2607
  quantity?: number;
1945
2608
  onQuantityChange?: (qty: number) => void;
1946
2609
  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 }: {
2610
+ }
2611
+ declare function CartItem({ name, price, quantity, onQuantityChange, onRemove, className, ...props }: CartItemProps): React$1.JSX.Element;
2612
+ interface InvoiceCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1965
2613
  invoiceNumber: string;
1966
2614
  date: string;
1967
- status: "paid" | "pending" | "overdue";
1968
- amount: string;
2615
+ status?: "paid" | "pending" | "overdue";
2616
+ amount: string | number;
1969
2617
  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 }: {
2618
+ onDownload?: () => void;
2619
+ }
2620
+ declare function InvoiceCard({ invoiceNumber, date, status, amount, client, onDownload, className, ...props }: InvoiceCardProps): React$1.JSX.Element;
2621
+ interface CouponCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1980
2622
  code: string;
1981
2623
  discount: string;
1982
2624
  description?: string;
1983
2625
  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 }: {
2626
+ }
2627
+ declare function CouponCard({ code, discount, description, validUntil, className, ...props }: CouponCardProps): React$1.JSX.Element;
2628
+ interface PricingSliderProps extends React$1.HTMLAttributes<HTMLDivElement> {
2629
+ tiers?: {
2630
+ name: string;
2631
+ price: string | number;
2632
+ features: string[];
2633
+ }[];
2634
+ }
2635
+ declare function PricingSlider({ tiers, className, ...props }: PricingSliderProps): React$1.JSX.Element;
2636
+ declare function ReviewStars({ rating, size, reviewCount }: {
1995
2637
  rating?: number;
1996
- onChange?: (rating: number) => void;
1997
2638
  size?: number;
1998
- readonly?: boolean;
1999
- className?: string;
2000
- }): react_jsx_runtime.JSX.Element;
2001
- declare function TrustBadge({ icon, title, subtitle, className }: {
2639
+ reviewCount?: number;
2640
+ }): React$1.JSX.Element;
2641
+ declare function TrustBadge({ icon, title, subtitle, className, }: {
2002
2642
  icon?: React$1.ReactNode;
2003
- title: string;
2643
+ title?: string;
2004
2644
  subtitle?: string;
2005
2645
  className?: string;
2006
- }): react_jsx_runtime.JSX.Element;
2646
+ }): React$1.JSX.Element;
2007
2647
 
2008
2648
  interface GlowSpotlightCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2649
+ /**
2650
+ * Описание для children
2651
+ * @default undefined
2652
+ */
2009
2653
  children: React$1.ReactNode;
2654
+ /**
2655
+ * Описание для glowColor
2656
+ * @default undefined
2657
+ */
2010
2658
  glowColor?: string;
2659
+ /**
2660
+ * Описание для glowSize
2661
+ * @default undefined
2662
+ */
2011
2663
  glowSize?: number;
2012
2664
  }
2013
2665
  declare const GlowSpotlightCard: React$1.ForwardRefExoticComponent<GlowSpotlightCardProps & React$1.RefAttributes<HTMLDivElement>>;
2014
2666
  interface WordFadeRevealProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2667
+ /**
2668
+ * Описание для text
2669
+ * @default undefined
2670
+ */
2015
2671
  text: string;
2672
+ /**
2673
+ * Описание для delay
2674
+ * @default undefined
2675
+ */
2016
2676
  delay?: number;
2677
+ /**
2678
+ * Описание для delayMultiple
2679
+ * @default undefined
2680
+ */
2017
2681
  delayMultiple?: number;
2682
+ /**
2683
+ * Описание для duration
2684
+ * @default undefined
2685
+ */
2018
2686
  duration?: number;
2019
2687
  }
2020
- declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): react_jsx_runtime.JSX.Element;
2688
+ declare function WordFadeReveal({ text, className, delay, delayMultiple, duration, ...props }: WordFadeRevealProps): React$1.JSX.Element;
2021
2689
  interface AnimatedGridBackgroundProps extends React$1.SVGProps<SVGSVGElement> {
2690
+ /**
2691
+ * Описание для width
2692
+ * @default undefined
2693
+ */
2022
2694
  width?: number;
2695
+ /**
2696
+ * Описание для height
2697
+ * @default undefined
2698
+ */
2023
2699
  height?: number;
2700
+ /**
2701
+ * Описание для strokeWidth
2702
+ * @default undefined
2703
+ */
2024
2704
  strokeWidth?: number;
2705
+ /**
2706
+ * Описание для strokeColor
2707
+ * @default undefined
2708
+ */
2025
2709
  strokeColor?: string;
2710
+ /**
2711
+ * Описание для cellFlashColor
2712
+ * @default undefined
2713
+ */
2026
2714
  cellFlashColor?: string;
2715
+ /**
2716
+ * Описание для flashInterval
2717
+ * @default undefined
2718
+ */
2027
2719
  flashInterval?: number;
2720
+ /**
2721
+ * Описание для maxFlashes
2722
+ * @default undefined
2723
+ */
2028
2724
  maxFlashes?: number;
2725
+ /**
2726
+ * Описание для className
2727
+ * @default undefined
2728
+ */
2029
2729
  className?: string;
2030
2730
  }
2031
- declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): react_jsx_runtime.JSX.Element;
2731
+ declare function AnimatedGridBackground({ width, height, strokeWidth, strokeColor, cellFlashColor, flashInterval, maxFlashes, className, ...props }: AnimatedGridBackgroundProps): React$1.JSX.Element;
2032
2732
  interface BentoGridProps extends React$1.HTMLAttributes<HTMLDivElement> {
2733
+ /**
2734
+ * Описание для children
2735
+ * @default undefined
2736
+ */
2033
2737
  children: React$1.ReactNode;
2738
+ /**
2739
+ * Описание для className
2740
+ * @default undefined
2741
+ */
2034
2742
  className?: string;
2035
2743
  }
2036
- declare function BentoGrid({ children, className, ...props }: BentoGridProps): react_jsx_runtime.JSX.Element;
2744
+ declare function BentoGrid({ children, className, ...props }: BentoGridProps): React$1.JSX.Element;
2037
2745
  interface BentoCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
2746
+ /**
2747
+ * Описание для title
2748
+ * @default undefined
2749
+ */
2038
2750
  title: string;
2751
+ /**
2752
+ * Описание для description
2753
+ * @default undefined
2754
+ */
2039
2755
  description: string;
2756
+ /**
2757
+ * Описание для header
2758
+ * @default undefined
2759
+ */
2040
2760
  header?: React$1.ReactNode;
2761
+ /**
2762
+ * Описание для icon
2763
+ * @default undefined
2764
+ */
2041
2765
  icon?: React$1.ReactNode;
2766
+ /**
2767
+ * Описание для children
2768
+ * @default undefined
2769
+ */
2042
2770
  children?: React$1.ReactNode;
2771
+ /**
2772
+ * Описание для span
2773
+ * @default undefined
2774
+ */
2043
2775
  span?: string;
2776
+ /**
2777
+ * Описание для delay
2778
+ * @default undefined
2779
+ */
2044
2780
  delay?: number;
2781
+ /**
2782
+ * Описание для className
2783
+ * @default undefined
2784
+ */
2785
+ className?: string;
2786
+ }
2787
+ declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): React$1.JSX.Element;
2788
+
2789
+ type AuroraFXColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | string;
2790
+ type AuroraFXGlow = 'none' | 'subtle' | 'medium' | 'strong';
2791
+ type AuroraFXRadius = 'sm' | 'md' | 'lg' | 'xl' | 'full';
2792
+ interface AuroraColorOption {
2793
+ name: string;
2794
+ hex: string;
2795
+ }
2796
+ declare const defaultAuroraColors: AuroraColorOption[];
2797
+ interface AuroraBorderFXProps extends React$1.HTMLAttributes<HTMLDivElement> {
2798
+ /** Color preset ('violet', 'cyan', 'emerald', 'rose', 'amber') or any valid CSS hex/rgb color */
2799
+ color?: AuroraFXColor;
2800
+ /** Ambient dynamic glow intensity */
2801
+ glow?: AuroraFXGlow;
2802
+ /** Corner radius preset */
2803
+ radius?: AuroraFXRadius;
2804
+ /** Badge text displayed at the top */
2805
+ badgeText?: string;
2806
+ /** Icon displayed next to badge text */
2807
+ badgeIcon?: React$1.ReactNode;
2808
+ /** Card title */
2809
+ title?: string;
2810
+ /** Card description */
2811
+ description?: string;
2812
+ /** Whether to show the interactive color switcher */
2813
+ showColorPicker?: boolean;
2814
+ /** Custom color options for the color switcher */
2815
+ colors?: AuroraColorOption[];
2816
+ /** Controlled active color */
2817
+ activeColor?: string;
2818
+ /** Callback fired when color changes in color picker */
2819
+ onColorChange?: (colorHex: string) => void;
2820
+ /** Preview slot inside card body */
2821
+ previewSlot?: React$1.ReactNode;
2822
+ /** Footer slot at the bottom of the card */
2823
+ footerSlot?: React$1.ReactNode;
2824
+ /** Custom children — replaces standard card body if provided */
2825
+ children?: React$1.ReactNode;
2826
+ }
2827
+ /**
2828
+ * AuroraBorderFX Component
2829
+ *
2830
+ * State-of-the-art interactive card with reactive Aurora glow,
2831
+ * dynamic gradient border tracking, ambient atmospheric blur,
2832
+ * and built-in interactive color switcher.
2833
+ */
2834
+ declare const AuroraBorderFX: React$1.ForwardRefExoticComponent<AuroraBorderFXProps & React$1.RefAttributes<HTMLDivElement>>;
2835
+
2836
+ type MorphingShape = 'pill' | 'circle' | 'square' | 'squircle' | 'custom';
2837
+ type MorphingVariant = 'gradient' | 'aurora' | 'neon' | 'glass' | 'outline' | 'subtle';
2838
+ type MorphingColor = 'violet' | 'cyan' | 'emerald' | 'rose' | 'amber' | 'rainbow' | 'mono';
2839
+ type MorphingSize = 'sm' | 'md' | 'lg' | 'xl' | 'custom';
2840
+ interface MorphingGeometryProps extends Omit<HTMLMotionProps<'div'>, 'children'> {
2841
+ /** Shape geometry preset */
2842
+ shape?: MorphingShape;
2843
+ /** Explicit corner radius (in pixels or css string) when shape is custom or morphed */
2844
+ radius?: number | string;
2845
+ /** Visual surface variant style */
2846
+ variant?: MorphingVariant;
2847
+ /** Color theme palette */
2848
+ color?: MorphingColor;
2849
+ /** Standardized size preset */
2850
+ size?: MorphingSize;
2851
+ /** Custom width/height dimension in pixels if size is 'custom' */
2852
+ dimension?: number;
2853
+ /** Whether the geometry undergoes continuous slow rotation */
2854
+ spin?: boolean;
2855
+ /** Spin duration in seconds */
2856
+ spinDuration?: number;
2857
+ /** Whether clicking morphs the shape dynamically */
2858
+ interactive?: boolean;
2859
+ /** Ambient box-shadow glow intensity */
2860
+ glow?: boolean;
2861
+ /** Icon or graphic to display centered within the shape */
2862
+ icon?: React$1.ReactNode;
2863
+ /** Content rendered inside the morphing shape */
2864
+ children?: React$1.ReactNode;
2865
+ }
2866
+ /**
2867
+ * MorphingGeometry Component
2868
+ *
2869
+ * An interactive geometric entity with fluid corner transitions, dynamic physics,
2870
+ * luminous glow, and continuous ambient rotational states.
2871
+ */
2872
+ declare const MorphingGeometry: React$1.ForwardRefExoticComponent<Omit<MorphingGeometryProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
2873
+
2874
+ type CodeBlockTheme = 'dark' | 'aurora' | 'neon' | 'glass' | 'midnight';
2875
+ interface InteractiveCodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onCopy'> {
2876
+ /** Source code snippet string to display */
2877
+ code: string;
2878
+ /** Filename or title displayed in the macOS titlebar */
2879
+ filename?: string;
2880
+ /** Programming language identifier */
2881
+ language?: string;
2882
+ /** Whether to show numeric line numbers */
2883
+ showLineNumbers?: boolean;
2884
+ /** Array of line numbers to highlight */
2885
+ highlightLines?: number[];
2886
+ /** Color theme styling */
2887
+ theme?: CodeBlockTheme;
2888
+ /** Whether to render the 1-click clipboard copy button */
2889
+ copyable?: boolean;
2890
+ /** Custom badge tag displayed in the header */
2891
+ badgeText?: string;
2892
+ /** Callback fired when code is copied */
2893
+ onCopy?: (code: string) => void;
2894
+ }
2895
+ /**
2896
+ * InteractiveCodeBlock Component
2897
+ *
2898
+ * A macOS-inspired code presentation card with instant 1-click copy,
2899
+ * syntax layout, line numbering, and vibrant theme styling.
2900
+ */
2901
+ declare const InteractiveCodeBlock: React$1.ForwardRefExoticComponent<InteractiveCodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
2902
+
2903
+ interface DockProps {
2904
+ /**
2905
+ * Описание для items
2906
+ * @default undefined
2907
+ */
2908
+ items: {
2909
+ /**
2910
+ * Описание для icon
2911
+ * @default undefined
2912
+ */
2913
+ icon: React__default.ReactNode;
2914
+ /**
2915
+ * Описание для label
2916
+ * @default undefined
2917
+ */
2918
+ label: string;
2919
+ /**
2920
+ * Описание для onClick
2921
+ * @default undefined
2922
+ */
2923
+ onClick?: () => void;
2924
+ }[];
2925
+ /**
2926
+ * Описание для className
2927
+ * @default undefined
2928
+ */
2929
+ className?: string;
2930
+ /**
2931
+ * Описание для magnification
2932
+ * @default undefined
2933
+ */
2934
+ magnification?: number;
2935
+ /**
2936
+ * Описание для distance
2937
+ * @default undefined
2938
+ */
2939
+ distance?: number;
2940
+ }
2941
+ declare function Dock({ items, className, magnification, distance, }: DockProps): React__default.JSX.Element;
2942
+
2943
+ interface DarkModeToggleProps {
2944
+ theme?: "light" | "dark" | "system";
2945
+ variant?: "pill" | "icon" | "segmented";
2946
+ size?: "sm" | "md" | "lg";
2947
+ showLabel?: boolean;
2948
+ onChange?: (theme: "light" | "dark" | "system") => void;
2045
2949
  className?: string;
2046
2950
  }
2047
- declare function BentoCard({ title, description, header, icon, children, span, className, delay, ...props }: BentoCardProps): react_jsx_runtime.JSX.Element;
2951
+ declare function DarkModeToggle({ theme: controlledTheme, variant, size, showLabel, onChange, className, }: DarkModeToggleProps): React__default.JSX.Element;
2048
2952
 
2049
2953
  declare function cn(...inputs: ClassValue[]): string;
2050
2954
 
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 };
2955
+ 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, type AuroraSpeed, 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, type RatingProps, RatingStars, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, 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, 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 };