@moontra/moonui-pro 2.33.29 → 2.34.2

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.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
3
  import * as React$1 from 'react';
4
- import React__default, { ReactNode, ErrorInfo, ComponentType, FC } from 'react';
4
+ import React__default, { ReactNode, ErrorInfo, ComponentType, FC, JSX } from 'react';
5
5
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
6
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
@@ -1680,6 +1680,86 @@ interface DraggableListProps<T> {
1680
1680
  }
1681
1681
  declare function DraggableList<T>({ items, onReorder, keyExtractor, renderItem, className, itemClassName, dragHandleClassName, showDragHandle, dragHandleSize, disabled, onDragStart, onDragEnd, gap, animationDuration, showDropIndicator, dropIndicatorColor, dropIndicatorStyle, dragPreviewStyle, hapticFeedback }: DraggableListProps<T>): react_jsx_runtime.JSX.Element;
1682
1682
 
1683
+ /**
1684
+ * GlowCard Component
1685
+ *
1686
+ * Premium card component with advanced glow effects and animations
1687
+ * Inspired by React Bits: https://github.com/DavidHDev/react-bits
1688
+ *
1689
+ * @author React Bits Team (Original Inspiration), MoonUI Team
1690
+ * @license MIT
1691
+ */
1692
+ declare const glowCardVariants: (props?: ({
1693
+ variant?: "strong" | "glass" | "neon" | "subtle" | "aurora" | "cyberpunk" | "sunrise" | null | undefined;
1694
+ intensity?: "high" | "low" | "medium" | "extreme" | null | undefined;
1695
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1696
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1697
+ declare const animationPresets: {
1698
+ none: string;
1699
+ pulse: string;
1700
+ breathe: string;
1701
+ shimmer: string;
1702
+ bounce: string;
1703
+ flicker: string;
1704
+ wave: string;
1705
+ };
1706
+ declare const patternStyles: {
1707
+ none: string;
1708
+ dots: string;
1709
+ grid: string;
1710
+ waves: string;
1711
+ hexagon: string;
1712
+ circuit: string;
1713
+ };
1714
+ interface GlowLayer {
1715
+ color: string;
1716
+ size: number;
1717
+ opacity: number;
1718
+ blur?: number;
1719
+ inset?: boolean;
1720
+ }
1721
+ interface GlowCardProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'color'>, VariantProps<typeof glowCardVariants> {
1722
+ /** Card content */
1723
+ children: React__default.ReactNode;
1724
+ /** Primary glow color */
1725
+ glowColor?: string;
1726
+ /** Enable gradient glow */
1727
+ gradient?: boolean;
1728
+ /** Gradient colors array */
1729
+ gradientColors?: string[];
1730
+ /** Gradient angle in degrees */
1731
+ gradientAngle?: number;
1732
+ /** Animation preset */
1733
+ animationPreset?: keyof typeof animationPresets;
1734
+ /** Animation duration in seconds */
1735
+ animationDuration?: number;
1736
+ /** Multiple glow layers for complex effects */
1737
+ glowLayers?: GlowLayer[];
1738
+ /** Enable backdrop blur (glass effect) */
1739
+ backdropBlur?: boolean;
1740
+ /** Blur amount in pixels */
1741
+ blurAmount?: number;
1742
+ /** Background pattern */
1743
+ pattern?: keyof typeof patternStyles;
1744
+ /** Enable mouse tracking */
1745
+ mouseTrack?: boolean;
1746
+ /** Mouse effect radius */
1747
+ mouseRadius?: number;
1748
+ /** Enable 3D tilt effect on hover */
1749
+ tilt?: boolean;
1750
+ /** Maximum tilt angle */
1751
+ tiltAngle?: number;
1752
+ /** Theme mode */
1753
+ theme?: 'auto' | 'dark' | 'light';
1754
+ /** Disable all animations */
1755
+ disableAnimations?: boolean;
1756
+ /** Custom CSS variables */
1757
+ cssVars?: Record<string, string>;
1758
+ /** Container props */
1759
+ containerProps?: React__default.HTMLAttributes<HTMLDivElement>;
1760
+ }
1761
+ declare const GlowCard: React__default.ForwardRefExoticComponent<GlowCardProps & React__default.RefAttributes<HTMLDivElement>>;
1762
+
1683
1763
  declare const moonUIAnimatedButtonProVariants: (props?: ({
1684
1764
  variant?: "link" | "default" | "gradient" | "secondary" | "ghost" | "outline" | "destructive" | "glow" | null | undefined;
1685
1765
  size?: "default" | "sm" | "lg" | "xl" | "icon" | null | undefined;
@@ -1882,55 +1962,6 @@ interface FloatingDockProps extends Omit<React__default.HTMLAttributes<HTMLDivEl
1882
1962
  }
1883
1963
  declare const FloatingDock: React__default.ForwardRefExoticComponent<FloatingDockProps & React__default.RefAttributes<HTMLDivElement>>;
1884
1964
 
1885
- declare const particleImageVariants: (props?: ({
1886
- size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1887
- shape?: "square" | "circle" | "rounded" | null | undefined;
1888
- effect?: "explode" | "dissolve" | "spiral" | "wave" | null | undefined;
1889
- } & class_variance_authority_types.ClassProp) | undefined) => string;
1890
- interface ParticleImageProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof particleImageVariants> {
1891
- /**
1892
- * Resim URL'si
1893
- */
1894
- src: string;
1895
- /**
1896
- * Alt metni
1897
- */
1898
- alt?: string;
1899
- /**
1900
- * Parçacık sayısı (varsayılan: 100)
1901
- */
1902
- particleCount?: number;
1903
- /**
1904
- * Animasyon süresi (saniye, varsayılan: 3)
1905
- */
1906
- duration?: number;
1907
- /**
1908
- * Parçacık boyutu (varsayılan: 2)
1909
- */
1910
- particleSize?: number;
1911
- /**
1912
- * Hover'da tetikle (varsayılan: true)
1913
- */
1914
- triggerOnHover?: boolean;
1915
- /**
1916
- * Otomatik tetikleme (varsayılan: false)
1917
- */
1918
- autoTrigger?: boolean;
1919
- /**
1920
- * Otomatik tetikleme aralığı (saniye, varsayılan: 5)
1921
- */
1922
- autoTriggerInterval?: number;
1923
- /**
1924
- * Animasyon tamamlandığında çağrılacak callback
1925
- */
1926
- onComplete?: () => void;
1927
- /**
1928
- * Animasyon başladığında çağrılacak callback
1929
- */
1930
- onStart?: () => void;
1931
- }
1932
- declare const ParticleImage: React__default.ForwardRefExoticComponent<ParticleImageProps & React__default.RefAttributes<HTMLDivElement>>;
1933
-
1934
1965
  declare const splashCursorVariants: (props?: ({
1935
1966
  size?: "sm" | "md" | "lg" | "xl" | null | undefined;
1936
1967
  variant?: "default" | "secondary" | "destructive" | "accent" | "rainbow" | null | undefined;
@@ -1976,8 +2007,63 @@ interface SplashCursorProps extends VariantProps<typeof splashCursorVariants> {
1976
2007
  * Aktif/pasif durumu
1977
2008
  */
1978
2009
  enabled?: boolean;
2010
+ /**
2011
+ * Container ref - belirli bir container içinde çalışması için
2012
+ */
2013
+ containerRef?: React__default.RefObject<HTMLElement>;
2014
+ }
2015
+ declare const SplashCursor: React__default.NamedExoticComponent<SplashCursorProps>;
2016
+
2017
+ interface SplashCursorContainerProps extends Omit<SplashCursorProps, 'containerRef'> {
2018
+ /**
2019
+ * Container className
2020
+ */
2021
+ className?: string;
2022
+ /**
2023
+ * Container content
2024
+ */
2025
+ children?: React__default.ReactNode;
2026
+ /**
2027
+ * Container minimum height
2028
+ */
2029
+ minHeight?: string;
2030
+ }
2031
+ declare const SplashCursorContainer: React__default.FC<SplashCursorContainerProps>;
2032
+
2033
+ /**
2034
+ * Marquee Component
2035
+ *
2036
+ * Sonsuz döngüde kayan içerik komponenti
2037
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
2038
+ *
2039
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
2040
+ * @license MIT
2041
+ */
2042
+ interface MarqueeProps {
2043
+ /** Kayan içerik */
2044
+ children: React__default.ReactNode;
2045
+ /** Animasyon hızı (varsayılan: 50) */
2046
+ speed?: number;
2047
+ /** Animasyon yönü */
2048
+ direction?: 'left' | 'right' | 'up' | 'down';
2049
+ /** Hover'da durdur */
2050
+ pauseOnHover?: boolean;
2051
+ /** Klonlama sayısı (varsayılan: 2) */
2052
+ repeat?: number;
2053
+ /** Gradyan fade efekti */
2054
+ fade?: boolean;
2055
+ /** Fade genişliği (px) */
2056
+ fadeWidth?: number;
2057
+ /** Otomatik doldurma */
2058
+ autoFill?: boolean;
2059
+ /** CSS sınıfı */
2060
+ className?: string;
2061
+ /** Container CSS sınıfı */
2062
+ containerClassName?: string;
2063
+ /** Animasyon durumu değiştiğinde */
2064
+ onPlayStateChange?: (playing: boolean) => void;
1979
2065
  }
1980
- declare const SplashCursor: React__default.FC<SplashCursorProps>;
2066
+ declare const Marquee: React__default.FC<MarqueeProps>;
1981
2067
 
1982
2068
  interface ErrorFallbackProps {
1983
2069
  error: Error;
@@ -2011,7 +2097,7 @@ declare const FloatingActionButton: React__default.ForwardRefExoticComponent<Flo
2011
2097
 
2012
2098
  declare const hoverCard3DVariants: (props?: ({
2013
2099
  variant?: "neon" | "subtle" | "dramatic" | "gaming" | "elegant" | null | undefined;
2014
- shadowIntensity?: "medium" | "none" | "light" | "heavy" | "extreme" | null | undefined;
2100
+ shadowIntensity?: "medium" | "none" | "light" | "extreme" | "heavy" | null | undefined;
2015
2101
  glowEffect?: "none" | "neon" | "subtle" | "vibrant" | null | undefined;
2016
2102
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2017
2103
  interface SpringConfig {
@@ -2160,14 +2246,6 @@ interface PinchZoomProps {
2160
2246
  }
2161
2247
  declare const PinchZoom: React__default.ForwardRefExoticComponent<PinchZoomProps & React__default.RefAttributes<HTMLDivElement>>;
2162
2248
 
2163
- interface SpotlightCardProps extends React__default.HTMLAttributes<HTMLDivElement> {
2164
- spotlightColor?: string;
2165
- spotlightSize?: number;
2166
- intensity?: number;
2167
- borderGlow?: boolean;
2168
- }
2169
- declare const SpotlightCard: React__default.ForwardRefExoticComponent<SpotlightCardProps & React__default.RefAttributes<HTMLDivElement>>;
2170
-
2171
2249
  interface CalendarEvent {
2172
2250
  id: string;
2173
2251
  title: string;
@@ -3701,6 +3779,18 @@ interface NavbarSection {
3701
3779
  items: NavbarItem[];
3702
3780
  showInMobile?: boolean;
3703
3781
  }
3782
+ interface MinimalModeConfig {
3783
+ /** Height of navbar when scrolled (default: "h-14") */
3784
+ heightOnScroll?: string;
3785
+ /** Elements to hide when scrolled */
3786
+ hideElements?: Array<"search" | "logo-text" | "cta" | "theme-toggle" | "notifications">;
3787
+ /** Center navigation items when scrolled */
3788
+ centerOnScroll?: boolean;
3789
+ /** Scroll threshold to trigger minimal mode (default: 50) */
3790
+ scrollThreshold?: number;
3791
+ /** Animation duration in ms (default: 300) */
3792
+ animationDuration?: number;
3793
+ }
3704
3794
  interface NavbarConfig {
3705
3795
  sections: NavbarSection[];
3706
3796
  branding?: {
@@ -3720,6 +3810,8 @@ interface NavbarConfig {
3720
3810
  showThemeToggle?: boolean;
3721
3811
  theme?: "light" | "dark" | "system";
3722
3812
  onThemeChange?: (theme: "light" | "dark" | "system") => void;
3813
+ /** Toggle button style - dropdown shows menu, button toggles directly */
3814
+ themeToggleVariant?: "dropdown" | "button";
3723
3815
  userMenu?: {
3724
3816
  user?: {
3725
3817
  name?: string;
@@ -3762,10 +3854,18 @@ interface NavbarConfig {
3762
3854
  blur?: boolean;
3763
3855
  shadow?: boolean;
3764
3856
  rounded?: boolean;
3857
+ /** Position of logo (default: "left") */
3765
3858
  logoPosition?: "left" | "center";
3859
+ /** Position of navigation items (default: "left") */
3860
+ navItemsPosition?: "left" | "center" | "right";
3861
+ /** Mobile menu slide direction */
3766
3862
  mobileMenuPosition?: "left" | "right";
3767
3863
  hideOnScroll?: boolean;
3768
3864
  showScrollProgress?: boolean;
3865
+ /** Scroll behavior - static: no change, hide: hide on scroll, minimal: shrink on scroll */
3866
+ scrollBehavior?: "static" | "hide" | "minimal";
3867
+ /** Configuration for minimal mode */
3868
+ minimalConfig?: MinimalModeConfig;
3769
3869
  maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "full";
3770
3870
  fullWidth?: boolean;
3771
3871
  enableNProgress?: boolean;
@@ -3775,6 +3875,7 @@ interface NavbarProps extends NavbarConfig {
3775
3875
  activePath?: string;
3776
3876
  onNavigate?: (href: string) => void;
3777
3877
  }
3878
+
3778
3879
  declare function Navbar(props: NavbarProps): react_jsx_runtime.JSX.Element;
3779
3880
  type MoonUINavbarProProps = NavbarProps;
3780
3881
 
@@ -4114,6 +4215,7 @@ interface GlitchTextProps {
4114
4215
  primary?: string;
4115
4216
  secondary?: string;
4116
4217
  };
4218
+ intensity?: number;
4117
4219
  }
4118
4220
  declare const GlitchText: FC<GlitchTextProps>;
4119
4221
 
@@ -4183,6 +4285,74 @@ interface TextRevealProps extends React__default.HTMLAttributes<HTMLDivElement>,
4183
4285
  }
4184
4286
  declare const TextReveal: React__default.ForwardRefExoticComponent<TextRevealProps & React__default.RefAttributes<HTMLDivElement>>;
4185
4287
 
4288
+ /**
4289
+ * TypeWriter Text Component
4290
+ *
4291
+ * Yazı makinesi efekti ile metin animasyonu
4292
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4293
+ *
4294
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4295
+ * @license MIT
4296
+ */
4297
+ interface TypewriterTextProps {
4298
+ /** Animasyon yapılacak metin */
4299
+ text: string;
4300
+ /** Yazma hızı (ms cinsinden karakter başına) */
4301
+ speed?: number;
4302
+ /** Silme hızı (ms cinsinden karakter başına) */
4303
+ deleteSpeed?: number;
4304
+ /** Yazma tamamlandıktan sonra bekleme süresi */
4305
+ pauseAfter?: number;
4306
+ /** Animasyon döngü olarak devam etsin mi? */
4307
+ loop?: boolean;
4308
+ /** İmleç gösterilsin mi? */
4309
+ showCursor?: boolean;
4310
+ /** İmleç karakteri */
4311
+ cursorChar?: string;
4312
+ /** İmleç yanıp sönsün mü? */
4313
+ cursorBlink?: boolean;
4314
+ /** CSS sınıfı */
4315
+ className?: string;
4316
+ /** Yazma tamamlandığında çağrılacak callback */
4317
+ onComplete?: () => void;
4318
+ /** Her karakter yazıldığında çağrılacak callback */
4319
+ onType?: (char: string, index: number) => void;
4320
+ }
4321
+ declare const TypewriterText: React__default.FC<TypewriterTextProps>;
4322
+
4323
+ /**
4324
+ * Scrambled Text Component
4325
+ *
4326
+ * Rastgele karakterlerle metin karıştırma animasyonu
4327
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4328
+ *
4329
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4330
+ * @license MIT
4331
+ */
4332
+ interface ScrambledTextProps {
4333
+ /** Animasyon yapılacak metin */
4334
+ text: string;
4335
+ /** Karıştırma hızı (ms cinsinden) */
4336
+ speed?: number;
4337
+ /** Karıştırma süresi (ms cinsinden) */
4338
+ duration?: number;
4339
+ /** Karakterler için kullanılacak set */
4340
+ characterSet?: string;
4341
+ /** Animasyon tekrarı */
4342
+ repeat?: boolean;
4343
+ /** Tekrar bekleme süresi */
4344
+ repeatDelay?: number;
4345
+ /** Hover ile tetikleme */
4346
+ trigger?: 'auto' | 'hover' | 'click';
4347
+ /** CSS sınıfı */
4348
+ className?: string;
4349
+ /** Animasyon tamamlandığında çağrılacak callback */
4350
+ onComplete?: () => void;
4351
+ /** Her frame'de çağrılacak callback */
4352
+ onFrame?: (scrambledText: string) => void;
4353
+ }
4354
+ declare const ScrambledText: React__default.FC<ScrambledTextProps>;
4355
+
4186
4356
  declare const avatarVariants: (props?: ({
4187
4357
  size?: "sm" | "md" | "lg" | "xl" | "2xl" | "xs" | "3xl" | null | undefined;
4188
4358
  shape?: "square" | "circle" | "hexagon" | null | undefined;
@@ -4590,4 +4760,3290 @@ interface DashboardWidget {
4590
4760
  gridArea?: string;
4591
4761
  }
4592
4762
 
4593
- export { AIProvider, AIProviderConfig, AIResponse, MoonUIAccordionPro as Accordion, MoonUIAccordionContentPro as AccordionContent, MoonUIAccordionItemPro as AccordionItem, AccordionSize, MoonUIAccordionTriggerPro as AccordionTrigger, AccordionVariant, ActivityItem, Calendar as AdvancedCalendar, AdvancedChart, AdvancedChartProps, AdvancedFormField, AdvancedForms, AdvancedFormsProps, MoonUIAlertPro as Alert, MoonUIAlertDescriptionPro as AlertDescription, MoonUIAlertTitlePro as AlertTitle, AnimatedNumber, AnimatedNumberProps, AnimationMode$1 as AnimationMode, MoonUIAspectRatioPro as AspectRatio, MoonUIAvatarPro$1 as Avatar, MoonUIAvatarFallbackPro as AvatarFallback, MoonUIAvatarImagePro as AvatarImage, MoonUIBadgePro as Badge, BadgeVariant, MoonUIBreadcrumbPro as Breadcrumb, MoonUIBreadcrumbEllipsisPro as BreadcrumbEllipsis, MoonUIBreadcrumbItemPro as BreadcrumbItem, MoonUIBreadcrumbLinkPro as BreadcrumbLink, MoonUIBreadcrumbListPro as BreadcrumbList, MoonUIBreadcrumbPagePro as BreadcrumbPage, MoonUIBreadcrumbSeparatorPro as BreadcrumbSeparator, BulkAction, MoonUIButtonPro as Button, Calendar$1 as Calendar, CalendarEvent, Calendar as CalendarPro, MoonUICardPro as Card, MoonUICardContentPro as CardContent, MoonUICardDescriptionPro as CardDescription, MoonUICardFooterPro as CardFooter, MoonUICardHeaderPro as CardHeader, MoonUICardTitlePro as CardTitle, ChartData, ChartDataPoint$1 as ChartDataPoint, ChartSeries$1 as ChartSeries, ChartType, ChartWidget, ChartWidgetProps, MoonUICheckboxPro as Checkbox, ClaudeProvider, MoonUICollapsiblePro as Collapsible, AnimationMode as CollapsibleAnimationMode, MoonUICollapsibleContentPro as CollapsibleContent, CollapsibleSize, MoonUICollapsibleTriggerPro as CollapsibleTrigger, CollapsibleVariant, MoonUIColorPickerPro as ColorPicker, MoonUICommandPro as Command, MoonUICommandDialogPro as CommandDialog, MoonUICommandEmptyPro as CommandEmpty, MoonUICommandGroupPro as CommandGroup, MoonUICommandInputPro as CommandInput, MoonUICommandItemPro as CommandItem, MoonUICommandListPro as CommandList, MoonUICommandSeparatorPro as CommandSeparator, MoonUICommandShortcutPro as CommandShortcut, ComparisonData, ConnectorRenderer, CreditCardInputProps, Dashboard, DashboardWidget, DataTable, DataTableProps, MoonUIDialogPro as Dialog, MoonUIDialogClosePro as DialogClose, MoonUIDialogContentPro as DialogContent, MoonUIDialogDescriptionPro as DialogDescription, MoonUIDialogFooterPro as DialogFooter, MoonUIDialogHeaderPro as DialogHeader, MoonUIDialogTitlePro as DialogTitle, MoonUIDialogTriggerPro as DialogTrigger, DockItem, DraggableList, DraggableListProps, MoonUIDropdownMenuPro as DropdownMenu, MoonUIDropdownMenuCheckboxItemPro as DropdownMenuCheckboxItem, MoonUIDropdownMenuContentPro as DropdownMenuContent, MoonUIDropdownMenuGroupPro as DropdownMenuGroup, MoonUIDropdownMenuItemPro as DropdownMenuItem, MoonUIDropdownMenuLabelPro as DropdownMenuLabel, MoonUIDropdownMenuPortalPro as DropdownMenuPortal, MoonUIDropdownMenuRadioGroupPro as DropdownMenuRadioGroup, MoonUIDropdownMenuRadioItemPro as DropdownMenuRadioItem, MoonUIDropdownMenuSeparatorPro as DropdownMenuSeparator, MoonUIDropdownMenuShortcutPro as DropdownMenuShortcut, MoonUIDropdownMenuSubPro as DropdownMenuSub, MoonUIDropdownMenuSubContentPro as DropdownMenuSubContent, MoonUIDropdownMenuSubTriggerPro as DropdownMenuSubTrigger, MoonUIDropdownMenuTriggerPro as DropdownMenuTrigger, EditorAIConfig, ErrorBoundary, ErrorBoundaryProps, ErrorFallbackProps, EventRenderer, ExportFormat, FileUploadItem, FileUploadProProps, FilterCondition, FilterOperator, FloatingActionButton, FloatingActionButtonProps, FloatingDock, FloatingDockProps, FormWizard, FormWizardNavigation, FormWizardProgress, FormWizardProps, FormWizardStep, FunnelData, FunnelStage, FunnelWidget, FunnelWidgetProps, GalleryCategory, MoonUIGalleryItemPro as GalleryItem, GallerySortOption, GaugeData, GaugeWidget, GaugeWidgetProps, GeminiProvider, GestureDrawer, GestureDrawerProps, GitHubRepository, GitHubStars, GitHubStarsProps, GlitchText, GlitchTextProps, HealthCheck, HealthCheckEndpoint, HealthCheckProps, HealthCheckResult, HoverCard, HoverCard3D, HoverCard3DProps, HoverCardContent, HoverCardTrigger, IconRenderer, MoonUIInputPro as Input, ItemHeightInfo, KPIData, KPIWidget, KPIWidgetProps, Kanban, KanbanAssignee, KanbanCard, KanbanColumn, KanbanLabel, KanbanProps, LANGUAGE_COLORS, MoonUILabelPro as Label, LazyComponent, LazyImage, LazyImageProps, LazyList, LazyListProps, LightboxContent, LightboxContentProps, LightboxProvider, LightboxTrigger, MagneticButton, MagneticButtonProps, MoonUIMediaGalleryPro as MediaGallery, MediaItem, MemoryAnalytics, MemoryAnalyticsProps, MemoryConfig, MemoryEfficientData, MemoryEfficientDataProps, MemoryPerformanceMetrics, MemoryStats, MetricData, MilestoneEvent, MoonUIAccordionContentPro, MoonUIAccordionContentProProps, MoonUIAccordionItemPro, MoonUIAccordionItemProProps, MoonUIAccordionPro, MoonUIAccordionProBaseProps, MoonUIAccordionProMultipleProps, MoonUIAccordionProProps, MoonUIAccordionProSingleProps, MoonUIAccordionTriggerPro, MoonUIAccordionTriggerProProps, MoonUIAdvancedChartPro, MoonUIAlertDescriptionPro, MoonUIAlertPro, MoonUIAlertTitlePro, MoonUIAnimatedButtonPro, MoonUIAnimatedButtonProProps, MoonUIAnimatedListPro, MoonUIAnimatedListProProps, MoonUIAspectRatioPro, MoonUIAsyncAvatarPro, MoonUIAsyncAvatarProProps, MoonUIAvatarFallbackPro, MoonUIAvatarGroupPro, MoonUIAvatarGroupProProps, MoonUIAvatarImagePro, MoonUIAvatarPro, MoonUIAvatarProProps, MoonUIBadgePro, MoonUIBreadcrumbEllipsisPro, MoonUIBreadcrumbItemPro, MoonUIBreadcrumbLinkPro, MoonUIBreadcrumbListPro, MoonUIBreadcrumbPagePro, MoonUIBreadcrumbPro, MoonUIBreadcrumbSeparatorPro, MoonUIButtonPro, MoonUICache, Calendar as MoonUICalendarPro, MoonUICardContentPro, MoonUICardDescriptionPro, MoonUICardFooterPro, MoonUICardHeaderPro, MoonUICardPro, MoonUICardTitlePro, ChartDataPoint as MoonUIChartDataPoint, ChartSeries as MoonUIChartSeries, ChartWidget as MoonUIChartWidget, ChartWidgetProps as MoonUIChartWidgetProps, MoonUICheckboxPro, MoonUICollapsibleContentPro, MoonUICollapsibleContentProProps, MoonUICollapsiblePro, MoonUICollapsibleProProps, MoonUICollapsibleTriggerPro, MoonUICollapsibleTriggerProProps, MoonUIColorPickerPro, MoonUICommandDialogPro, MoonUICommandEmptyPro, MoonUICommandGroupPro, MoonUICommandInputPro, MoonUICommandItemPro, MoonUICommandListPro, MoonUICommandPro, MoonUICommandSeparatorPro, MoonUICommandShortcutPro, MoonUICreditCardInputPro, Dashboard as MoonUIDashboardPro, MoonUIDashboardProProps, MoonUIDataTable, DataTable as MoonUIDataTablePro, MoonUIDataTableProProps, MoonUIDataTableProps, MoonUIDialogClosePro, MoonUIDialogContentPro, MoonUIDialogDescriptionPro, MoonUIDialogFooterPro, MoonUIDialogHeaderPro, MoonUIDialogPro, MoonUIDialogTitlePro, MoonUIDialogTriggerPro, DraggableList as MoonUIDraggableListPro, MoonUIDropdownMenuCheckboxItemPro, MoonUIDropdownMenuContentPro, MoonUIDropdownMenuGroupPro, MoonUIDropdownMenuItemPro, MoonUIDropdownMenuLabelPro, MoonUIDropdownMenuPortalPro, MoonUIDropdownMenuPro, MoonUIDropdownMenuRadioGroupPro, MoonUIDropdownMenuRadioItemPro, MoonUIDropdownMenuSeparatorPro, MoonUIDropdownMenuShortcutPro, MoonUIDropdownMenuSubContentPro, MoonUIDropdownMenuSubPro, MoonUIDropdownMenuSubTriggerPro, MoonUIDropdownMenuTriggerPro, MoonUIFileUploadPro, MoonUIFormWizardPro, MoonUIFormWizardProProps, FunnelData as MoonUIFunnelData, FunnelStage as MoonUIFunnelStage, FunnelWidget as MoonUIFunnelWidget, FunnelWidgetProps as MoonUIFunnelWidgetProps, MoonUIGalleryItemPro, GaugeData as MoonUIGaugeData, GaugeWidget as MoonUIGaugeWidget, GaugeWidgetProps as MoonUIGaugeWidgetProps, MoonUIGestureDrawerPro, MoonUIGestureDrawerProProps, MoonUIInputPro, KPIData as MoonUIKPIData, KPIWidget as MoonUIKPIWidget, KPIWidgetProps as MoonUIKPIWidgetProps, MoonUIKanbanPro, MoonUIKanbanProProps, MoonUILabelPro, LightboxContent as MoonUILightboxContentPro, SimpleLightbox as MoonUILightboxPro, LightboxProvider as MoonUILightboxProviderPro, LightboxTrigger as MoonUILightboxTriggerPro, MoonUIMediaGalleryPro, MoonUIMemoryEfficientDataPro, Navbar as MoonUINavbarPro, MoonUINavbarProProps, MoonUIPaginationContentPro, MoonUIPaginationEllipsisPro, MoonUIPaginationItemPro, MoonUIPaginationLinkPro, MoonUIPaginationNextPro, MoonUIPaginationPreviousPro, MoonUIPaginationPro, PhoneNumberInput as MoonUIPhoneNumberInputPro, MoonUIPhoneNumberInputProProps, MoonUIPhoneNumberInputSimple, MoonUIPopoverContentPro, MoonUIPopoverPro, MoonUIPopoverTriggerPro, MoonUIProgressPro, Question as MoonUIQuestion, QuestionType as MoonUIQuestionType, MoonUIQuizFormPro, MoonUIQuizFormProProps, QuizResult as MoonUIQuizResult, QuizSettings as MoonUIQuizSettings, MoonUIRadioGroupContextPro, MoonUIRadioGroupItemPro, MoonUIRadioGroupPro, MoonUIRadioItemWithLabelPro, MoonUIRadioLabelPro, RevenueData as MoonUIRevenueData, RevenueMetric as MoonUIRevenueMetric, RevenueStream as MoonUIRevenueStream, RevenueWidget as MoonUIRevenueWidget, RevenueWidgetProps as MoonUIRevenueWidgetProps, RichTextEditor as MoonUIRichTextEditorPro, MoonUISelectContentPro, MoonUISelectGroupPro, MoonUISelectItemPro, MoonUISelectLabelPro, MoonUISelectPro, MoonUISelectSeparatorPro, MoonUISelectTriggerPro, MoonUISelectValuePro, SelectableVirtualList as MoonUISelectableVirtualListPro, MoonUISelectableVirtualListProProps, MoonUISeparatorPro, ServerData as MoonUIServerData, ServerMetric as MoonUIServerMetric, ServerMonitorWidget as MoonUIServerMonitorWidget, ServerMonitorWidgetProps as MoonUIServerMonitorWidgetProps, Sidebar as MoonUISidebarPro, MoonUISidebarProProps, MoonUISkeletonPro, MoonUISliderPro, MoonUISpotlightCardPro, MoonUISpotlightCardProProps, SwipeableCard as MoonUISwipeableCardPro, MoonUISwipeableCardProProps, MoonUISwitchPro, MoonUITableBodyPro, MoonUITableCaptionPro, MoonUITableCellPro, MoonUITableFooterPro, MoonUITableHeadPro, MoonUITableHeaderPro, MoonUITablePro, MoonUITableRowPro, MoonUITabsContentPro, MoonUITabsPro as MoonUITabsEnhanced, MoonUITabsProProps as MoonUITabsEnhancedProps, MoonUITabsListPro, MoonUITabsPro, MoonUITabsProProps, MoonUITabsTriggerPro, MoonUITextareaPro, Timeline as MoonUITimelinePro, MoonUITimelineProProps, MoonUIToastPro, MoonUITogglePro, MoonUITooltipContentPro, MoonUITooltipPro, MoonUITooltipProviderPro, MoonUITooltipTriggerPro, UserAnswer as MoonUIUserAnswer, VirtualList as MoonUIVirtualListPro, MoonUIVirtualListProProps, WidgetBase as MoonUIWidgetBase, WidgetBaseProps as MoonUIWidgetBaseProps, WidgetChartData as MoonUIWidgetChartData, MoonUIalertVariantsPro, MoonUIaspectRatioVariantsPro, MoonUIbreadcrumbVariantsPro, collapsibleContentVariants as MoonUIcollapsibleContentVariantsPro, collapsibleTriggerVariants as MoonUIcollapsibleTriggerVariantsPro, MoonUIradioGroupItemVariantsPro, MoonUItableVariantsPro, MoonUItoggleVariantsPro, Navbar, NavbarConfig, NavbarItem, NavbarSection, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NestedEvent, OpenAIProvider, OptimizedImage, OptimizedImageProps, OverlayRenderProp, MoonUIPaginationPro as Pagination, MoonUIPaginationContentPro as PaginationContent, MoonUIPaginationEllipsisPro as PaginationEllipsis, MoonUIPaginationItemPro as PaginationItem, MoonUIPaginationLinkPro as PaginationLink, MoonUIPaginationNextPro as PaginationNext, MoonUIPaginationPreviousPro as PaginationPrevious, ParticleImage, ParticleImageProps, PerformanceAlert, PerformanceDebugger, PerformanceDebuggerProps, PerformanceEntry, PerformanceMetric, PerformanceMetrics, PerformanceMonitor, PerformanceMonitorProps, PhoneNumberInput, PhoneNumberInputProps, PinchZoom, MoonUIPopoverPro as Popover, MoonUIPopoverContentPro as PopoverContent, MoonUIPopoverTriggerPro as PopoverTrigger, MoonUIProgressPro as Progress, ProgressData, QuestionType$1 as QuestionType, QuizAnswer, QuizForm, QuizFormProps, QuizQuestion, QuizResult$1 as QuizResult, MoonUIRadioGroupPro as RadioGroup, MoonUIRadioGroupContextPro as RadioGroupContext, MoonUIRadioGroupItemPro as RadioGroupItem, MoonUIRadioItemWithLabelPro as RadioItemWithLabel, MoonUIRadioLabelPro as RadioLabel, RangeEvent, RealTimePerformanceMonitor, RealTimePerformanceMonitorProps, RecurringEvent, RevenueData, RevenueMetric, RevenueStream, RevenueWidget, RevenueWidgetProps, RichTextEditor, RichTextEditorProps, spotlightPresets as SPOTLIGHT_PRESETS, ScrollArea, ScrollBar, MoonUISelectPro as Select, MoonUISelectContentPro as SelectContent, MoonUISelectGroupPro as SelectGroup, MoonUISelectItemPro as SelectItem, MoonUISelectLabelPro as SelectLabel, MoonUISelectSeparatorPro as SelectSeparator, MoonUISelectTriggerPro as SelectTrigger, MoonUISelectValuePro as SelectValue, SelectableVirtualList, SelectableVirtualListProps, MoonUISeparatorPro as Separator, ServerData, ServerMetric, ServerMonitorWidget, ServerMonitorWidgetProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, ShinyText, ShinyTextProps, Sidebar, SidebarConfig, SidebarItem, SidebarSection, SidebarState, SimpleLightbox, MoonUISkeletonPro as Skeleton, MoonUISliderPro as Slider, SplashCursor, SplashCursorProps, SpotlightCard, SpotlightCardProps, SpotlightPreset, SpringConfig, SubscriptionProvider, SwipeableCard, SwipeableCardProps, MoonUISwitchPro as Switch, TabItem, MoonUITablePro as Table, MoonUITableBodyPro as TableBody, MoonUITableCaptionPro as TableCaption, MoonUITableCellPro as TableCell, TableFeatures, MoonUITableFooterPro as TableFooter, MoonUITableHeadPro as TableHead, MoonUITableHeaderPro as TableHeader, MoonUITableRowPro as TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TextReveal, TextRevealProps, MoonUITextareaPro as Textarea, Timeline, TimelineAnimation, TimelineEvent, TimelineEventBase, TimelineEventMetadata, TimelineEventType, TimelineGroupBy, TimelineLayout, TimelineProps, TimelineTheme, TimelineUser, MoonUIToastPro as Toast, MoonUITogglePro as Toggle, MoonUITooltipPro as Tooltip, MoonUITooltipContentPro as TooltipContent, MoonUITooltipProviderPro as TooltipProvider, MoonUITooltipTriggerPro as TooltipTrigger, VirtualList, VirtualListProps, Widget, WidgetBase, WidgetBaseProps, WidgetChartData, WizardStep, WizardStepContentProps, MoonUIalertVariantsPro as alertVariants, MoonUIaspectRatioVariantsPro as aspectRatioVariants, moonUIBadgeVariantsPro as badgeVariants, MoonUIbreadcrumbVariantsPro as breadcrumbVariants, moonUIButtonProVariants as buttonVariants, clearCache, cn, collapsibleContentVariants, collapsibleTriggerVariants, commandVariantsPro, createAIProvider, forceRefresh, galleryItemVariants, galleryVariants, getExpandableColumn, hoverCard3DVariants, moonUIAnimatedButtonProVariants, badgeVariants as moonUIAvatarBadgeVariants, avatarVariants as moonUIAvatarProVariants, statusVariants as moonUIAvatarStatusVariants, moonUIBadgeVariantsPro, moonUIButtonProVariants, gestureDrawerVariants as moonUIGestureDrawerProVariants, moonUISeparatorVariantsPro, navigationMenuTriggerStyle, countries as phoneCountries, MoonUIradioGroupItemVariantsPro as radioGroupItemVariants, moonUISeparatorVariantsPro as separatorVariants, spotlightPresets, MoonUItableVariantsPro as tableVariants, MoonUItoggleVariantsPro as toggleVariants, useAccordionAnalytics, useCollapsibleAnalytics, useExpandableRows, useFormWizard, useStreamingData, useSubscription, useSubscriptionContext, useVirtualList };
4763
+ /**
4764
+ * Bento Grid Component
4765
+ *
4766
+ * Modern grid layout sistemi
4767
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4768
+ *
4769
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4770
+ * @license MIT
4771
+ */
4772
+ interface BentoGridProps {
4773
+ /** Grid içeriği */
4774
+ children: React__default.ReactNode;
4775
+ /** Grid sütun sayısı */
4776
+ columns?: 1 | 2 | 3 | 4 | 5 | 6;
4777
+ /** Grid boşluk boyutu */
4778
+ gap?: 'sm' | 'md' | 'lg' | 'xl';
4779
+ /** CSS sınıfı */
4780
+ className?: string;
4781
+ /** Responsive breakpoints */
4782
+ responsive?: boolean;
4783
+ /** Auto-fit layout */
4784
+ autoFit?: boolean;
4785
+ }
4786
+ interface BentoGridItemProps {
4787
+ /** Item içeriği */
4788
+ children: React__default.ReactNode;
4789
+ /** Sütun genişliği */
4790
+ colSpan?: 1 | 2 | 3 | 4 | 5 | 6;
4791
+ /** Satır yüksekliği */
4792
+ rowSpan?: 1 | 2 | 3 | 4;
4793
+ /** CSS sınıfı */
4794
+ className?: string;
4795
+ /** Hover efekti */
4796
+ hover?: boolean;
4797
+ /** Tıklanabilir */
4798
+ onClick?: () => void;
4799
+ /** Arka plan rengi/gradyan */
4800
+ background?: string;
4801
+ /** Border radius */
4802
+ rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
4803
+ }
4804
+ declare const BentoGrid: React__default.FC<BentoGridProps> & {
4805
+ Item: React__default.FC<BentoGridItemProps>;
4806
+ };
4807
+ declare const BentoGridItem: React__default.FC<BentoGridItemProps>;
4808
+
4809
+ /**
4810
+ * Confetti Effect Component
4811
+ *
4812
+ * Konfeti animasyon efekti komponenti
4813
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4814
+ *
4815
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4816
+ * @license MIT
4817
+ */
4818
+ interface ConfettiProps {
4819
+ /** Whether confetti is active */
4820
+ active?: boolean;
4821
+ /** Konfeti sayısı */
4822
+ particleCount?: number;
4823
+ /** Yayılma açısı */
4824
+ spread?: number;
4825
+ /** Başlangıç hızı */
4826
+ startVelocity?: number;
4827
+ /** Yerçekimi */
4828
+ gravity?: number;
4829
+ /** Sönme oranı */
4830
+ decay?: number;
4831
+ /** Renkler */
4832
+ colors?: string[];
4833
+ /** Başlangıç pozisyonu */
4834
+ origin?: {
4835
+ x?: number;
4836
+ y?: number;
4837
+ };
4838
+ /** Animasyon süresi (ms) */
4839
+ duration?: number;
4840
+ /** Şekiller */
4841
+ shapes?: ('square' | 'circle')[];
4842
+ /** Boyut çarpanı */
4843
+ scalar?: number;
4844
+ /** Açı */
4845
+ angle?: number;
4846
+ /** Drift (sürüklenme) */
4847
+ drift?: number;
4848
+ /** Tween süresi */
4849
+ ticks?: number;
4850
+ /** Z-index */
4851
+ zIndex?: number;
4852
+ /** Preset animasyonlar */
4853
+ preset?: 'default' | 'fireworks' | 'snow' | 'pride' | 'stars' | 'school-pride';
4854
+ /** Animasyon tamamlandığında */
4855
+ onComplete?: () => void;
4856
+ }
4857
+ interface ConfettiButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
4858
+ /** Buton içeriği */
4859
+ children: React__default.ReactNode;
4860
+ /** Konfeti ayarları */
4861
+ confettiOptions?: Omit<ConfettiProps, 'active' | 'onComplete'>;
4862
+ /** CSS sınıfı */
4863
+ className?: string;
4864
+ }
4865
+ declare const Confetti: React__default.FC<ConfettiProps>;
4866
+ declare const ConfettiButton: React__default.FC<ConfettiButtonProps>;
4867
+
4868
+ /**
4869
+ * Parallax Scroll Component
4870
+ *
4871
+ * Scroll efekti ile paralaks animasyonu
4872
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4873
+ *
4874
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4875
+ * @license MIT
4876
+ */
4877
+ interface ParallaxScrollProps {
4878
+ /** Paralaks efekti uygulanacak alt componentler */
4879
+ children: React__default.ReactNode;
4880
+ /** Paralaks hızı (0-1 arası, 0.5 varsayılan) */
4881
+ speed?: number;
4882
+ /** Scroll yönü */
4883
+ direction?: 'vertical' | 'horizontal';
4884
+ /** Container'ın yüksekliği */
4885
+ height?: string | number;
4886
+ /** Container'ın genişliği */
4887
+ width?: string | number;
4888
+ /** CSS sınıfı */
4889
+ className?: string;
4890
+ /** Overflow davranışı */
4891
+ overflow?: 'hidden' | 'visible' | 'scroll' | 'auto';
4892
+ /** Perspektif değeri (3D efekt için) */
4893
+ perspective?: number;
4894
+ }
4895
+ declare const ParallaxScroll: React__default.FC<ParallaxScrollProps>;
4896
+
4897
+ /**
4898
+ * Word Rotate Component
4899
+ *
4900
+ * Kelimeler arasında döngüsel animasyon
4901
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4902
+ *
4903
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4904
+ * @license MIT
4905
+ */
4906
+ interface WordRotateProps {
4907
+ /** Döndürülecek kelimeler dizisi */
4908
+ words: string[];
4909
+ /** Kelimeler arası geçiş süresi (ms) */
4910
+ duration?: number;
4911
+ /** Animasyon tipi */
4912
+ animation?: 'fade' | 'slide' | 'flip' | 'scale';
4913
+ /** CSS sınıfı */
4914
+ className?: string;
4915
+ /** Kelime değiştiğinde çağrılacak callback */
4916
+ onWordChange?: (word: string, index: number) => void;
4917
+ /** Animasyon duraklatılsın mı? */
4918
+ paused?: boolean;
4919
+ /** Başlangıç kelime indeksi */
4920
+ startIndex?: number;
4921
+ /** Sonsuz döngü */
4922
+ loop?: boolean;
4923
+ }
4924
+ declare const WordRotate: React__default.FC<WordRotateProps>;
4925
+
4926
+ /**
4927
+ * Cursor Trail Component
4928
+ *
4929
+ * Mouse cursor'ının arkasında iz bırakan efekt
4930
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
4931
+ *
4932
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
4933
+ * @license MIT
4934
+ */
4935
+ interface TrailPoint {
4936
+ x: number;
4937
+ y: number;
4938
+ id: number;
4939
+ timestamp: number;
4940
+ }
4941
+ interface CursorTrailProps {
4942
+ /** İz noktalarının sayısı */
4943
+ trailLength?: number;
4944
+ /** İz noktalarının boyutu */
4945
+ size?: number;
4946
+ /** İz rengi */
4947
+ color?: string;
4948
+ /** İz şekli */
4949
+ shape?: 'circle' | 'square' | 'diamond';
4950
+ /** Animasyon süresi (ms) */
4951
+ duration?: number;
4952
+ /** İz opaklığı */
4953
+ opacity?: number;
4954
+ /** Blur efekti */
4955
+ blur?: number;
4956
+ /** CSS sınıfı */
4957
+ className?: string;
4958
+ /** Sadece belirli element üzerinde aktif olsun mu? */
4959
+ targetRef?: React__default.RefObject<HTMLElement>;
4960
+ /** İz aktif mi? */
4961
+ enabled?: boolean;
4962
+ /** Custom trail render fonksiyonu */
4963
+ renderTrail?: (point: TrailPoint, index: number, total: number) => React__default.ReactNode;
4964
+ }
4965
+ declare const CursorTrail: React__default.FC<CursorTrailProps>;
4966
+
4967
+ /**
4968
+ * Professional Grid Pattern Component
4969
+ *
4970
+ * React Bits uyumlu gelişmiş grid pattern bileşeni
4971
+ * Profesyonel arka plan efektleri için optimize edilmiştir
4972
+ *
4973
+ * @author React Bits Team (Original), MoonUI Team (Enhanced Pro Version)
4974
+ * @license MIT
4975
+ */
4976
+ interface GridPatternProps {
4977
+ /** Pattern genişliği (px) */
4978
+ width?: number;
4979
+ /** Pattern yüksekliği (px) */
4980
+ height?: number;
4981
+ /** X pozisyon offset'i */
4982
+ x?: number;
4983
+ /** Y pozisyon offset'i */
4984
+ y?: number;
4985
+ /** Vurgulanacak grid kareleri koordinatları [x, y] */
4986
+ squares?: [number, number][];
4987
+ /** SVG stroke dash array pattern */
4988
+ strokeDasharray?: string;
4989
+ /** CSS sınıfı */
4990
+ className?: string;
4991
+ /** Grid rengi */
4992
+ strokeColor?: string;
4993
+ /** Grid çizgi kalınlığı */
4994
+ strokeWidth?: number;
4995
+ /** Maksimum opaklık değeri animasyonlar için */
4996
+ maxOpacity?: number;
4997
+ /** Animasyon süresi (ms) */
4998
+ duration?: number;
4999
+ /** Animasyon tekrar gecikmesi (ms) */
5000
+ repeatDelay?: number;
5001
+ /** Grid deseni tipi */
5002
+ variant?: 'lines' | 'dots' | 'cross' | 'hexagon' | 'triangle';
5003
+ /** Gradient efekti */
5004
+ gradient?: boolean;
5005
+ /** Gradient renkleri */
5006
+ gradientFrom?: string;
5007
+ gradientTo?: string;
5008
+ /** Gradient yönü */
5009
+ gradientDirection?: 'horizontal' | 'vertical' | 'diagonal' | 'radial';
5010
+ /** Animasyon tipi */
5011
+ animationType?: 'pulse' | 'wave' | 'rotate' | 'scale' | 'fade' | 'none';
5012
+ /** Blur efekti */
5013
+ blur?: boolean;
5014
+ /** Masking efekti */
5015
+ mask?: 'radial' | 'linear' | 'none';
5016
+ /** Parallax scroll efekti */
5017
+ parallax?: boolean;
5018
+ /** Interactive hover efekti */
5019
+ interactive?: boolean;
5020
+ /** Noise efekti */
5021
+ noise?: boolean;
5022
+ /** Grid boyutu (responsive) */
5023
+ size?: 'sm' | 'md' | 'lg' | 'xl' | number;
5024
+ /** Performance mode (düşük cihazlar için) */
5025
+ performance?: 'high' | 'balanced' | 'low';
5026
+ }
5027
+ declare const GridPattern: React__default.FC<GridPatternProps>;
5028
+
5029
+ /**
5030
+ * Reveal Cards Component
5031
+ *
5032
+ * Card animations that reveal on hover, click or scroll
5033
+ * Adapted from React Bits: https://github.com/DavidHDev/react-bits
5034
+ *
5035
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
5036
+ * @license MIT
5037
+ */
5038
+ interface RevealCardProps {
5039
+ /** Card content */
5040
+ children: React__default.ReactNode;
5041
+ /** Reveal trigger */
5042
+ trigger?: 'hover' | 'click' | 'scroll';
5043
+ /** Animation direction */
5044
+ direction?: 'up' | 'down' | 'left' | 'right' | 'center';
5045
+ /** Animation duration */
5046
+ duration?: number;
5047
+ /** Delay time */
5048
+ delay?: number;
5049
+ /** CSS class name */
5050
+ className?: string;
5051
+ /** Callback when card is revealed */
5052
+ onReveal?: () => void;
5053
+ /** Callback when card is hidden */
5054
+ onHide?: () => void;
5055
+ /** Initially revealed? */
5056
+ initialRevealed?: boolean;
5057
+ /** Animation type */
5058
+ animation?: 'fade' | 'slide' | 'scale' | 'flip' | 'blur';
5059
+ /** Index for stagger effect */
5060
+ staggerIndex?: number;
5061
+ /** Stagger delay amount */
5062
+ staggerDelay?: number;
5063
+ }
5064
+ interface RevealCardsProps {
5065
+ /** Card list */
5066
+ children: React__default.ReactNode;
5067
+ /** General settings */
5068
+ trigger?: RevealCardProps['trigger'];
5069
+ direction?: RevealCardProps['direction'];
5070
+ duration?: RevealCardProps['duration'];
5071
+ animation?: RevealCardProps['animation'];
5072
+ /** Is stagger effect active? */
5073
+ stagger?: boolean;
5074
+ /** Stagger delay amount */
5075
+ staggerDelay?: number;
5076
+ /** CSS class name */
5077
+ className?: string;
5078
+ }
5079
+ declare const RevealCards: React__default.FC<RevealCardsProps>;
5080
+ declare const RevealCard: React__default.FC<RevealCardProps>;
5081
+
5082
+ /**
5083
+ * Meteors Component
5084
+ *
5085
+ * Animated meteors background effect component
5086
+ * Adapted from React Bits: https://github.com/DavidHDev/react-bits
5087
+ *
5088
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
5089
+ * @license MIT
5090
+ */
5091
+ interface MeteorsProps {
5092
+ /** Child content */
5093
+ children?: React__default.ReactNode;
5094
+ /** CSS class */
5095
+ className?: string;
5096
+ /** Container CSS class */
5097
+ containerClassName?: string;
5098
+ /** Number of meteors */
5099
+ number?: number;
5100
+ /** Meteor color */
5101
+ color?: string;
5102
+ /** Animation duration range (seconds) */
5103
+ duration?: {
5104
+ min: number;
5105
+ max: number;
5106
+ };
5107
+ /** Meteor size range */
5108
+ size?: {
5109
+ min: number;
5110
+ max: number;
5111
+ };
5112
+ /** Meteor speed */
5113
+ speed?: 'slow' | 'medium' | 'fast';
5114
+ /** Direction */
5115
+ direction?: 'left-to-right' | 'right-to-left' | 'top-to-bottom' | 'random';
5116
+ /** Density */
5117
+ density?: 'low' | 'medium' | 'high';
5118
+ /** Auto play */
5119
+ autoPlay?: boolean;
5120
+ /** Meteor tail length */
5121
+ tailLength?: number;
5122
+ /** Opacity range */
5123
+ opacity?: {
5124
+ min: number;
5125
+ max: number;
5126
+ };
5127
+ /** Glow effect */
5128
+ glow?: boolean;
5129
+ /** Glow size */
5130
+ glowSize?: number;
5131
+ }
5132
+ declare const Meteors: React__default.FC<MeteorsProps>;
5133
+
5134
+ /**
5135
+ * Aurora Background Component
5136
+ *
5137
+ * Creates beautiful aurora borealis-like animated gradient backgrounds
5138
+ * Perfect for hero sections, landing pages, and atmospheric UI elements
5139
+ *
5140
+ * @author MoonUI Team
5141
+ * @license MIT
5142
+ */
5143
+ interface AuroraBackgroundProps {
5144
+ /** Child content to render on top of aurora */
5145
+ children?: React__default.ReactNode;
5146
+ /** Additional CSS classes for content wrapper */
5147
+ className?: string;
5148
+ /** Container CSS classes */
5149
+ containerClassName?: string;
5150
+ /** Aurora gradient colors (hex or rgb) */
5151
+ colors?: {
5152
+ primary?: string;
5153
+ secondary?: string;
5154
+ tertiary?: string;
5155
+ };
5156
+ /** Animation speed */
5157
+ speed?: 'slow' | 'normal' | 'fast';
5158
+ /** Background opacity (0-1) */
5159
+ opacity?: number;
5160
+ /** Blur intensity in pixels */
5161
+ blur?: number;
5162
+ /** Enable shimmer overlay effect */
5163
+ shimmer?: boolean;
5164
+ /** Enable interactive mouse tracking */
5165
+ interactive?: boolean;
5166
+ /** Background blend mode */
5167
+ blendMode?: 'normal' | 'multiply' | 'screen' | 'overlay';
5168
+ /** Animation style variant */
5169
+ variant?: 'default' | 'subtle' | 'vibrant' | 'dark';
5170
+ /** Fixed or scrolling background */
5171
+ fixed?: boolean;
5172
+ /** Pause animations when not visible */
5173
+ pauseWhenHidden?: boolean;
5174
+ }
5175
+ declare const AuroraBackground: React__default.FC<AuroraBackgroundProps>;
5176
+
5177
+ /**
5178
+ * Particles Component
5179
+ *
5180
+ * Interactive particle system with mouse tracking and physics
5181
+ * High-performance canvas-based animation with WebGL support
5182
+ *
5183
+ * @author MoonUI Team
5184
+ * @license MIT
5185
+ */
5186
+ interface ParticlesProps {
5187
+ /** Child content to display over particles */
5188
+ children?: React__default.ReactNode;
5189
+ /** CSS class for the container */
5190
+ className?: string;
5191
+ /** Number of particles */
5192
+ count?: number;
5193
+ /** Particle size range */
5194
+ size?: {
5195
+ min: number;
5196
+ max: number;
5197
+ };
5198
+ /** Particle colors (hex format) */
5199
+ colors?: string[];
5200
+ /** Particle speed */
5201
+ speed?: number;
5202
+ /** Enable mouse interaction */
5203
+ interactive?: boolean;
5204
+ /** Mouse effect radius */
5205
+ mouseRadius?: number;
5206
+ /** Connection distance between particles */
5207
+ connectDistance?: number;
5208
+ /** Show connections between particles */
5209
+ showConnections?: boolean;
5210
+ /** Connection line width */
5211
+ lineWidth?: number;
5212
+ /** Connection line opacity */
5213
+ lineOpacity?: number;
5214
+ /** Particle shape */
5215
+ shape?: 'circle' | 'square' | 'triangle' | 'star';
5216
+ /** Enable parallax effect */
5217
+ parallax?: boolean;
5218
+ /** Parallax factor */
5219
+ parallaxFactor?: number;
5220
+ /** FPS limit for performance */
5221
+ fps?: number;
5222
+ /** Enable performance mode (reduces quality for better performance) */
5223
+ performanceMode?: boolean;
5224
+ /** Background color */
5225
+ backgroundColor?: string;
5226
+ /** Blur amount */
5227
+ blur?: number;
5228
+ /** Container class */
5229
+ containerClassName?: string;
5230
+ /** Enable glow effect */
5231
+ glow?: boolean;
5232
+ /** Glow intensity */
5233
+ glowIntensity?: number;
5234
+ /** Movement pattern */
5235
+ movement?: 'random' | 'linear' | 'circular' | 'wave' | 'gravity';
5236
+ /** Gravity strength (for gravity movement) */
5237
+ gravity?: number;
5238
+ /** Enable boundary bounce */
5239
+ bounce?: boolean;
5240
+ /** Particle opacity range */
5241
+ opacity?: {
5242
+ min: number;
5243
+ max: number;
5244
+ };
5245
+ }
5246
+ declare const Particles: React__default.FC<ParticlesProps>;
5247
+
5248
+ /**
5249
+ * Starfield Component
5250
+ *
5251
+ * 3D starfield animation with parallax scrolling and warp effects
5252
+ * High-performance WebGL-based rendering with fallback to canvas
5253
+ *
5254
+ * @author MoonUI Team
5255
+ * @license MIT
5256
+ */
5257
+ interface StarfieldProps {
5258
+ /** Child content to display over starfield */
5259
+ children?: React__default.ReactNode;
5260
+ /** CSS class for the canvas */
5261
+ className?: string;
5262
+ /** Full width container */
5263
+ fullWidth?: boolean;
5264
+ /** Number of stars */
5265
+ starCount?: number;
5266
+ /** Star color (hex or rgb) */
5267
+ starColor?: string | string[];
5268
+ /** Speed factor (0-10) */
5269
+ speed?: number;
5270
+ /** Background color */
5271
+ backgroundColor?: string;
5272
+ /** Enable mouse parallax */
5273
+ mouseParallax?: boolean;
5274
+ /** Parallax intensity */
5275
+ parallaxIntensity?: number;
5276
+ /** Star size range */
5277
+ starSize?: {
5278
+ min: number;
5279
+ max: number;
5280
+ };
5281
+ /** Enable twinkle effect */
5282
+ twinkle?: boolean;
5283
+ /** Twinkle speed */
5284
+ twinkleSpeed?: number;
5285
+ /** Enable shooting stars */
5286
+ shootingStars?: boolean;
5287
+ /** Shooting star frequency (per minute) */
5288
+ shootingStarFrequency?: number;
5289
+ /** Enable warp speed effect */
5290
+ warpSpeed?: boolean;
5291
+ /** Warp speed factor */
5292
+ warpFactor?: number;
5293
+ /** Field of view (degrees) */
5294
+ fov?: number;
5295
+ /** Enable depth blur */
5296
+ depthBlur?: boolean;
5297
+ /** Container class */
5298
+ containerClassName?: string;
5299
+ /** FPS limit */
5300
+ fps?: number;
5301
+ /** Star trails */
5302
+ trails?: boolean;
5303
+ /** Trail length */
5304
+ trailLength?: number;
5305
+ /** Enable nebula clouds */
5306
+ nebula?: boolean;
5307
+ /** Nebula colors */
5308
+ nebulaColors?: string[];
5309
+ /** Direction of movement */
5310
+ direction?: 'forward' | 'backward' | 'left' | 'right' | 'spiral';
5311
+ /** Rotation speed for spiral */
5312
+ spiralSpeed?: number;
5313
+ }
5314
+ declare const Starfield: React__default.FC<StarfieldProps>;
5315
+
5316
+ /**
5317
+ * DotPattern Component
5318
+ *
5319
+ * Sophisticated dot pattern background with animation and interaction
5320
+ * High-performance SVG-based rendering with customization options
5321
+ *
5322
+ * @author MoonUI Team
5323
+ * @license MIT
5324
+ */
5325
+ interface DotPatternProps {
5326
+ /** Child content to display over pattern */
5327
+ children?: React__default.ReactNode;
5328
+ /** CSS class for the pattern */
5329
+ className?: string;
5330
+ /** Container class */
5331
+ containerClassName?: string;
5332
+ /** Dot size in pixels */
5333
+ dotSize?: number;
5334
+ /** Gap between dots */
5335
+ gap?: number;
5336
+ /** Dot color (supports gradient) */
5337
+ color?: string | string[];
5338
+ /** Dot opacity */
5339
+ opacity?: number;
5340
+ /** Enable animation */
5341
+ animated?: boolean;
5342
+ /** Animation type */
5343
+ animationType?: 'pulse' | 'wave' | 'fade' | 'scale' | 'rotate';
5344
+ /** Animation duration in seconds */
5345
+ animationDuration?: number;
5346
+ /** Enable hover effect */
5347
+ hoverEffect?: boolean;
5348
+ /** Hover radius */
5349
+ hoverRadius?: number;
5350
+ /** Pattern style */
5351
+ pattern?: 'square' | 'hex' | 'diagonal' | 'circular';
5352
+ /** Enable gradient */
5353
+ gradient?: boolean;
5354
+ /** Gradient direction */
5355
+ gradientDirection?: 'radial' | 'linear' | 'conic';
5356
+ /** Gradient angle (for linear) */
5357
+ gradientAngle?: number;
5358
+ /** Blur amount */
5359
+ blur?: number;
5360
+ /** Background color */
5361
+ backgroundColor?: string;
5362
+ /** Enable mask fade */
5363
+ maskFade?: boolean;
5364
+ /** Mask fade direction */
5365
+ maskFadeDirection?: 'top' | 'bottom' | 'left' | 'right' | 'center';
5366
+ /** Enable parallax effect */
5367
+ parallax?: boolean;
5368
+ /** Parallax speed */
5369
+ parallaxSpeed?: number;
5370
+ /** Density factor (1 = normal, 2 = double, 0.5 = half) */
5371
+ density?: number;
5372
+ /** Enable responsive sizing */
5373
+ responsive?: boolean;
5374
+ }
5375
+ declare const DotPattern: React__default.FC<DotPatternProps>;
5376
+
5377
+ /**
5378
+ * GridDistortion Component
5379
+ *
5380
+ * High-performance canvas-based grid background with wave distortion effects
5381
+ * Optimized rendering with proper DPR support and smooth animations
5382
+ *
5383
+ * @author MoonUI Team
5384
+ * @license MIT
5385
+ */
5386
+ interface GridDistortionProps {
5387
+ /** Child content to display over grid */
5388
+ children?: React__default.ReactNode;
5389
+ /** CSS class for the grid */
5390
+ className?: string;
5391
+ /** Container class */
5392
+ containerClassName?: string;
5393
+ /** Number of grid columns */
5394
+ columns?: number;
5395
+ /** Number of grid rows */
5396
+ rows?: number;
5397
+ /** Grid line color */
5398
+ color?: string;
5399
+ /** Grid line width */
5400
+ lineWidth?: number;
5401
+ /** Grid opacity */
5402
+ opacity?: number;
5403
+ /** Background color */
5404
+ backgroundColor?: string;
5405
+ /** Enable wave distortion */
5406
+ distortion?: boolean;
5407
+ /** Distortion type */
5408
+ distortionType?: 'wave' | 'ripple' | 'turbulence' | 'spiral' | 'noise';
5409
+ /** Wave amplitude */
5410
+ amplitude?: number;
5411
+ /** Wave frequency */
5412
+ frequency?: number;
5413
+ /** Animation speed */
5414
+ speed?: number;
5415
+ /** Enable mouse interaction */
5416
+ interactive?: boolean;
5417
+ /** Mouse effect radius */
5418
+ mouseRadius?: number;
5419
+ /** Mouse effect strength */
5420
+ mouseStrength?: number;
5421
+ /** Enable perspective */
5422
+ perspective?: boolean;
5423
+ /** Perspective depth */
5424
+ perspectiveDepth?: number;
5425
+ /** Rotation X angle */
5426
+ rotateX?: number;
5427
+ /** Rotation Y angle */
5428
+ rotateY?: number;
5429
+ /** Enable glow effect */
5430
+ glow?: boolean;
5431
+ /** Glow intensity */
5432
+ glowIntensity?: number;
5433
+ /** Glow color */
5434
+ glowColor?: string;
5435
+ /** Enable gradient */
5436
+ gradient?: boolean;
5437
+ /** Gradient colors */
5438
+ gradientColors?: string[];
5439
+ /** Enable responsive sizing */
5440
+ responsive?: boolean;
5441
+ /** FPS limit */
5442
+ fps?: number;
5443
+ /** Enable blur effect */
5444
+ blur?: number;
5445
+ }
5446
+ declare const GridDistortion: React__default.FC<GridDistortionProps>;
5447
+
5448
+ /**
5449
+ * Waves Component
5450
+ *
5451
+ * Animated wave effects background with multiple layers
5452
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5453
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5454
+ *
5455
+ * @author MoonUI Team
5456
+ * @license MIT
5457
+ * @credits React Bits by David H
5458
+ */
5459
+ interface WavesProps {
5460
+ /** Child content to display over waves */
5461
+ children?: React__default.ReactNode;
5462
+ /** CSS class for the waves */
5463
+ className?: string;
5464
+ /** Container class */
5465
+ containerClassName?: string;
5466
+ /** Number of wave layers */
5467
+ layers?: number;
5468
+ /** Wave colors (gradient or solid) */
5469
+ colors?: string[];
5470
+ /** Wave amplitude (height) */
5471
+ amplitude?: number;
5472
+ /** Wave frequency (number of waves) */
5473
+ frequency?: number;
5474
+ /** Animation speed in seconds */
5475
+ speed?: number;
5476
+ /** Wave opacity */
5477
+ opacity?: number;
5478
+ /** Background color */
5479
+ backgroundColor?: string;
5480
+ /** Wave style */
5481
+ waveStyle?: 'smooth' | 'sharp' | 'turbulent' | 'organic';
5482
+ /** Enable parallax effect between layers */
5483
+ parallax?: boolean;
5484
+ /** Parallax intensity */
5485
+ parallaxIntensity?: number;
5486
+ /** Wave direction */
5487
+ direction?: 'horizontal' | 'vertical' | 'diagonal';
5488
+ /** Enable blur effect */
5489
+ blur?: number;
5490
+ /** Enable gradient */
5491
+ gradient?: boolean;
5492
+ /** Gradient type */
5493
+ gradientType?: 'linear' | 'radial';
5494
+ /** Animation type */
5495
+ animationType?: 'continuous' | 'pulse' | 'breathe';
5496
+ /** Enable mouse interaction */
5497
+ interactive?: boolean;
5498
+ /** Mouse effect radius */
5499
+ mouseRadius?: number;
5500
+ /** FPS limit for performance */
5501
+ fps?: number;
5502
+ }
5503
+ declare const Waves: React__default.FC<WavesProps>;
5504
+
5505
+ /**
5506
+ * GradientFlow Component
5507
+ *
5508
+ * Dynamic flowing gradient background with animated colors
5509
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5510
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5511
+ *
5512
+ * @author MoonUI Team
5513
+ * @license MIT
5514
+ * @credits React Bits by David H
5515
+ */
5516
+ interface GradientFlowProps {
5517
+ /** Child content to display over gradient */
5518
+ children?: React__default.ReactNode;
5519
+ /** CSS class for the gradient */
5520
+ className?: string;
5521
+ /** Container class */
5522
+ containerClassName?: string;
5523
+ /** Gradient colors */
5524
+ colors?: string[];
5525
+ /** Animation speed in seconds */
5526
+ speed?: number;
5527
+ /** Gradient angle in degrees */
5528
+ angle?: number;
5529
+ /** Gradient type */
5530
+ type?: 'linear' | 'radial' | 'conic' | 'mesh';
5531
+ /** Animation style */
5532
+ animationStyle?: 'flow' | 'morph' | 'pulse' | 'rotate' | 'shift';
5533
+ /** Enable blur effect */
5534
+ blur?: number;
5535
+ /** Background opacity */
5536
+ opacity?: number;
5537
+ /** Number of gradient steps */
5538
+ steps?: number;
5539
+ /** Enable noise texture */
5540
+ noise?: boolean;
5541
+ /** Noise opacity */
5542
+ noiseOpacity?: number;
5543
+ /** Enable interactive mode */
5544
+ interactive?: boolean;
5545
+ /** Mouse effect radius */
5546
+ mouseRadius?: number;
5547
+ /** Enable parallax effect */
5548
+ parallax?: boolean;
5549
+ /** Parallax intensity */
5550
+ parallaxIntensity?: number;
5551
+ /** Gradient scale */
5552
+ scale?: number;
5553
+ /** Background blend mode */
5554
+ blendMode?: 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn';
5555
+ /** Enable smooth transitions */
5556
+ smooth?: boolean;
5557
+ /** FPS limit for performance */
5558
+ fps?: number;
5559
+ }
5560
+ declare const GradientFlow: React__default.FC<GradientFlowProps>;
5561
+
5562
+ /**
5563
+ * MeshGradient Component
5564
+ *
5565
+ * Advanced mesh gradient with multiple color points and smooth blending
5566
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5567
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5568
+ *
5569
+ * @author MoonUI Team
5570
+ * @license MIT
5571
+ * @credits React Bits by David H
5572
+ */
5573
+ interface MeshGradientProps {
5574
+ /** Child content to display over gradient */
5575
+ children?: React__default.ReactNode;
5576
+ /** CSS class for the gradient */
5577
+ className?: string;
5578
+ /** Container class */
5579
+ containerClassName?: string;
5580
+ /** Gradient colors */
5581
+ colors?: string[];
5582
+ /** Animation speed in seconds */
5583
+ speed?: number;
5584
+ /** Mesh grid size */
5585
+ gridSize?: number;
5586
+ /** Enable animation */
5587
+ animate?: boolean;
5588
+ /** Animation type */
5589
+ animationType?: 'wave' | 'morph' | 'pulse' | 'swirl' | 'flow';
5590
+ /** Background opacity */
5591
+ opacity?: number;
5592
+ /** Blur amount */
5593
+ blur?: number;
5594
+ /** Enable interactive mode */
5595
+ interactive?: boolean;
5596
+ /** Mouse effect radius */
5597
+ mouseRadius?: number;
5598
+ /** Color blending mode */
5599
+ blendMode?: 'normal' | 'multiply' | 'screen' | 'overlay' | 'soft-light';
5600
+ /** Mesh complexity (number of control points) */
5601
+ complexity?: number;
5602
+ /** Color interpolation method */
5603
+ interpolation?: 'linear' | 'bezier' | 'smooth';
5604
+ /** Enable grain texture */
5605
+ grain?: boolean;
5606
+ /** Grain opacity */
5607
+ grainOpacity?: number;
5608
+ /** Color saturation */
5609
+ saturation?: number;
5610
+ /** Color brightness */
5611
+ brightness?: number;
5612
+ /** FPS limit for performance */
5613
+ fps?: number;
5614
+ }
5615
+ declare const MeshGradient: React__default.FC<MeshGradientProps>;
5616
+
5617
+ /**
5618
+ * LiquidBackground Component
5619
+ *
5620
+ * Fluid liquid-like animation background with metaball effects
5621
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5622
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5623
+ *
5624
+ * @author MoonUI Team
5625
+ * @license MIT
5626
+ * @credits React Bits by David H
5627
+ */
5628
+ interface LiquidBackgroundProps {
5629
+ /** Child content to display over liquid */
5630
+ children?: React__default.ReactNode;
5631
+ /** CSS class for the liquid */
5632
+ className?: string;
5633
+ /** Container class */
5634
+ containerClassName?: string;
5635
+ /** Liquid colors */
5636
+ colors?: string[];
5637
+ /** Number of liquid blobs */
5638
+ blobCount?: number;
5639
+ /** Animation speed */
5640
+ speed?: number;
5641
+ /** Blob size range */
5642
+ sizeRange?: [number, number];
5643
+ /** Background opacity */
5644
+ opacity?: number;
5645
+ /** Blur amount for metaball effect */
5646
+ blur?: number;
5647
+ /** Contrast for sharp edges */
5648
+ contrast?: number;
5649
+ /** Enable interactive mode */
5650
+ interactive?: boolean;
5651
+ /** Mouse effect radius */
5652
+ mouseRadius?: number;
5653
+ /** Liquid viscosity (0-1) */
5654
+ viscosity?: number;
5655
+ /** Surface tension strength */
5656
+ tension?: number;
5657
+ /** Enable glow effect */
5658
+ glow?: boolean;
5659
+ /** Glow intensity */
5660
+ glowIntensity?: number;
5661
+ /** Background color */
5662
+ backgroundColor?: string;
5663
+ /** Animation style */
5664
+ animationStyle?: 'float' | 'morph' | 'bubble' | 'lava';
5665
+ /** Enable gradient overlay */
5666
+ gradientOverlay?: boolean;
5667
+ /** FPS limit for performance */
5668
+ fps?: number;
5669
+ }
5670
+ declare const LiquidBackground: React__default.FC<LiquidBackgroundProps>;
5671
+
5672
+ /**
5673
+ * MatrixRain Component
5674
+ *
5675
+ * Digital rain effect inspired by The Matrix movie
5676
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5677
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5678
+ *
5679
+ * @author MoonUI Team
5680
+ * @license MIT
5681
+ * @credits React Bits by David H
5682
+ */
5683
+ interface MatrixRainProps {
5684
+ /** Child content to display over matrix */
5685
+ children?: React__default.ReactNode;
5686
+ /** CSS class for the matrix */
5687
+ className?: string;
5688
+ /** Container class */
5689
+ containerClassName?: string;
5690
+ /** Matrix color theme */
5691
+ color?: 'green' | 'blue' | 'red' | 'purple' | 'cyan' | 'white' | 'custom';
5692
+ /** Custom color (used when color is 'custom') */
5693
+ customColor?: string;
5694
+ /** Rain speed (1-10) */
5695
+ speed?: number;
5696
+ /** Font size of characters */
5697
+ fontSize?: number;
5698
+ /** Character opacity */
5699
+ opacity?: number;
5700
+ /** Character set to use */
5701
+ charSet?: 'matrix' | 'binary' | 'japanese' | 'chinese' | 'emoji' | 'custom';
5702
+ /** Custom character set */
5703
+ customChars?: string;
5704
+ /** Background opacity */
5705
+ backgroundOpacity?: number;
5706
+ /** Enable glow effect */
5707
+ glow?: boolean;
5708
+ /** Glow intensity */
5709
+ glowIntensity?: number;
5710
+ /** Column density (0.1 - 1) */
5711
+ density?: number;
5712
+ /** Fade length */
5713
+ fadeLength?: number;
5714
+ /** Enable interactive mode (follows mouse) */
5715
+ interactive?: boolean;
5716
+ /** Mouse effect radius */
5717
+ mouseRadius?: number;
5718
+ /** FPS limit for performance */
5719
+ fps?: number;
5720
+ }
5721
+ declare const MatrixRain: React__default.FC<MatrixRainProps>;
5722
+
5723
+ /**
5724
+ * GlitchBackground Component
5725
+ *
5726
+ * Digital glitch effect background with distortion and interference
5727
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5728
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5729
+ *
5730
+ * @author MoonUI Team
5731
+ * @license MIT
5732
+ * @credits React Bits by David H
5733
+ */
5734
+ interface GlitchBackgroundProps {
5735
+ /** Child content to display over glitch */
5736
+ children?: React__default.ReactNode;
5737
+ /** CSS class for the glitch */
5738
+ className?: string;
5739
+ /** Container class */
5740
+ containerClassName?: string;
5741
+ /** Glitch intensity (0-1) */
5742
+ intensity?: number;
5743
+ /** Glitch frequency (0-1) */
5744
+ frequency?: number;
5745
+ /** Enable RGB shift effect */
5746
+ rgbShift?: boolean;
5747
+ /** RGB shift amount */
5748
+ rgbShiftAmount?: number;
5749
+ /** Enable scan lines */
5750
+ scanLines?: boolean;
5751
+ /** Scan line opacity */
5752
+ scanLineOpacity?: number;
5753
+ /** Enable static noise */
5754
+ noise?: boolean;
5755
+ /** Noise opacity */
5756
+ noiseOpacity?: number;
5757
+ /** Glitch colors */
5758
+ colors?: string[];
5759
+ /** Background color */
5760
+ backgroundColor?: string;
5761
+ /** Enable flicker effect */
5762
+ flicker?: boolean;
5763
+ /** Flicker intensity */
5764
+ flickerIntensity?: number;
5765
+ /** Enable distortion */
5766
+ distortion?: boolean;
5767
+ /** Distortion amount */
5768
+ distortionAmount?: number;
5769
+ /** Animation speed */
5770
+ speed?: number;
5771
+ /** Enable interactive mode */
5772
+ interactive?: boolean;
5773
+ /** Mouse effect radius */
5774
+ mouseRadius?: number;
5775
+ /** FPS limit for performance */
5776
+ fps?: number;
5777
+ }
5778
+ declare const GlitchBackground: React__default.FC<GlitchBackgroundProps>;
5779
+
5780
+ /**
5781
+ * FloatingElements Component
5782
+ *
5783
+ * Floating geometric shapes and elements with physics simulation
5784
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5785
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5786
+ *
5787
+ * @author MoonUI Team
5788
+ * @license MIT
5789
+ * @credits React Bits by David H
5790
+ */
5791
+ interface FloatingElementsProps {
5792
+ /** Child content to display over elements */
5793
+ children?: React__default.ReactNode;
5794
+ /** CSS class for the elements */
5795
+ className?: string;
5796
+ /** Container class */
5797
+ containerClassName?: string;
5798
+ /** Number of floating elements */
5799
+ count?: number;
5800
+ /** Element shapes */
5801
+ shapes?: ('circle' | 'square' | 'triangle' | 'hexagon' | 'star' | 'heart')[];
5802
+ /** Element colors */
5803
+ colors?: string[];
5804
+ /** Size range [min, max] */
5805
+ sizeRange?: [number, number];
5806
+ /** Movement speed */
5807
+ speed?: number;
5808
+ /** Rotation speed */
5809
+ rotationSpeed?: number;
5810
+ /** Enable 3D rotation */
5811
+ enable3D?: boolean;
5812
+ /** Z-axis depth for 3D */
5813
+ depth?: number;
5814
+ /** Enable glow effect */
5815
+ glow?: boolean;
5816
+ /** Glow intensity */
5817
+ glowIntensity?: number;
5818
+ /** Background opacity */
5819
+ backgroundOpacity?: number;
5820
+ /** Enable collision detection */
5821
+ collision?: boolean;
5822
+ /** Enable gravity */
5823
+ gravity?: boolean;
5824
+ /** Gravity strength */
5825
+ gravityStrength?: number;
5826
+ /** Enable mouse interaction */
5827
+ interactive?: boolean;
5828
+ /** Mouse effect radius */
5829
+ mouseRadius?: number;
5830
+ /** Connection lines between elements */
5831
+ connections?: boolean;
5832
+ /** Connection distance threshold */
5833
+ connectionDistance?: number;
5834
+ /** Connection opacity */
5835
+ connectionOpacity?: number;
5836
+ /** FPS limit for performance */
5837
+ fps?: number;
5838
+ }
5839
+ declare const FloatingElements: React__default.FC<FloatingElementsProps>;
5840
+
5841
+ /**
5842
+ * BubbleBackground Component - Performance Optimized
5843
+ *
5844
+ * Animated bubble effects with physics simulation
5845
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
5846
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
5847
+ *
5848
+ * @author MoonUI Team
5849
+ * @license MIT
5850
+ * @credits React Bits by David H
5851
+ */
5852
+ interface BubbleBackgroundProps {
5853
+ /** Child content to display over bubbles */
5854
+ children?: React__default.ReactNode;
5855
+ /** CSS class for the bubbles */
5856
+ className?: string;
5857
+ /** Container class */
5858
+ containerClassName?: string;
5859
+ /** Number of bubbles */
5860
+ count?: number;
5861
+ /** Bubble colors */
5862
+ colors?: string[];
5863
+ /** Size range [min, max] */
5864
+ sizeRange?: [number, number];
5865
+ /** Rising speed */
5866
+ speed?: number;
5867
+ /** Horizontal wobble amount */
5868
+ wobble?: number;
5869
+ /** Background color */
5870
+ backgroundColor?: string;
5871
+ /** Background opacity */
5872
+ backgroundOpacity?: number;
5873
+ /** Bubble opacity */
5874
+ bubbleOpacity?: number;
5875
+ /** Enable gradient bubbles */
5876
+ gradient?: boolean;
5877
+ /** Gradient type */
5878
+ gradientType?: 'radial' | 'linear';
5879
+ /** Enable glow effect */
5880
+ glow?: boolean;
5881
+ /** Glow intensity */
5882
+ glowIntensity?: number;
5883
+ /** Enable blur effect */
5884
+ blur?: boolean;
5885
+ /** Blur amount */
5886
+ blurAmount?: number;
5887
+ /** Enable popping animation */
5888
+ popping?: boolean;
5889
+ /** Pop threshold (distance from top) */
5890
+ popThreshold?: number;
5891
+ /** Enable interactive mode */
5892
+ interactive?: boolean;
5893
+ /** Mouse effect radius */
5894
+ mouseRadius?: number;
5895
+ /** Enable merging bubbles */
5896
+ merging?: boolean;
5897
+ /** Merge threshold distance */
5898
+ mergeThreshold?: number;
5899
+ /** Animation style */
5900
+ animationStyle?: 'float' | 'rise' | 'lava' | 'champagne';
5901
+ /** FPS limit for performance */
5902
+ fps?: number;
5903
+ /** Enable physics simulation */
5904
+ physics?: boolean;
5905
+ /** Gravity strength */
5906
+ gravity?: number;
5907
+ /** Buoyancy force */
5908
+ buoyancy?: number;
5909
+ /** Split chance */
5910
+ splitChance?: number;
5911
+ /** Merge distance */
5912
+ mergeDistance?: number;
5913
+ }
5914
+ declare const BubbleBackground: React__default.FC<BubbleBackgroundProps>;
5915
+
5916
+ /**
5917
+ * GeometricPatterns Component (Performance Optimized)
5918
+ *
5919
+ * Yüksek performanslı animasyonlu geometrik desenler
5920
+ * Optimizasyonlar:
5921
+ * - Gradient önbelleğe alma (caching)
5922
+ * - Spatial grid ile mouse etkileşimi
5923
+ * - Batch rendering
5924
+ * - Offscreen canvas kullanımı
5925
+ * - Object pooling
5926
+ * - Performans presets
5927
+ *
5928
+ * @author MoonUI Team
5929
+ * @license MIT
5930
+ * @credits React Bits by David H
5931
+ */
5932
+ interface GeometricPatternsProps {
5933
+ /** Child content to display over patterns */
5934
+ children?: React__default.ReactNode;
5935
+ /** CSS class for the patterns */
5936
+ className?: string;
5937
+ /** Container class */
5938
+ containerClassName?: string;
5939
+ /** Pattern type */
5940
+ pattern?: 'triangles' | 'hexagons' | 'squares' | 'diamonds' | 'circles' | 'mixed';
5941
+ /** Pattern colors */
5942
+ colors?: string[];
5943
+ /** Pattern size */
5944
+ patternSize?: number;
5945
+ /** Pattern spacing */
5946
+ spacing?: number;
5947
+ /** Animation type */
5948
+ animation?: 'rotate' | 'pulse' | 'shift' | 'morph' | 'none';
5949
+ /** Animation speed (ms) */
5950
+ animationSpeed?: number;
5951
+ /** Pattern opacity */
5952
+ opacity?: number;
5953
+ /** Enable 3D effect */
5954
+ enable3D?: boolean;
5955
+ /** 3D depth */
5956
+ depth?: number;
5957
+ /** Pattern stroke width */
5958
+ strokeWidth?: number;
5959
+ /** Fill patterns */
5960
+ fillStyle?: 'solid' | 'gradient' | 'outline' | 'dotted';
5961
+ /** Gradient direction */
5962
+ gradientDirection?: 'horizontal' | 'vertical' | 'diagonal' | 'radial';
5963
+ /** Enable glow effect */
5964
+ glow?: boolean;
5965
+ /** Glow intensity */
5966
+ glowIntensity?: number;
5967
+ /** Background color */
5968
+ backgroundColor?: string;
5969
+ /** Interactive mode */
5970
+ interactive?: boolean;
5971
+ /** Mouse effect radius */
5972
+ mouseRadius?: number;
5973
+ /** Pattern density */
5974
+ density?: number;
5975
+ /** FPS limit for performance */
5976
+ fps?: number;
5977
+ /** Performance preset - düşük cihazlar için optimize et */
5978
+ performancePreset?: 'low' | 'medium' | 'high';
5979
+ }
5980
+ declare const GeometricPatterns: React__default.FC<GeometricPatternsProps>;
5981
+
5982
+ /**
5983
+ * Blur Fade Component
5984
+ *
5985
+ * Blur efektli fade animasyon bileşeni
5986
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
5987
+ *
5988
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
5989
+ * @license MIT
5990
+ */
5991
+ interface BlurFadeProps {
5992
+ /** Alt içerik */
5993
+ children: React__default.ReactNode;
5994
+ /** CSS sınıfı */
5995
+ className?: string;
5996
+ /** Görünüm tetikleyicisi (intersection observer için) */
5997
+ variant?: 'fade-in' | 'fade-up' | 'fade-down' | 'fade-left' | 'fade-right';
5998
+ /** Animasyon gecikmesi (ms) */
5999
+ delay?: number;
6000
+ /** Animasyon süresi (ms) */
6001
+ duration?: number;
6002
+ /** Blur miktarı (px) */
6003
+ blur?: string;
6004
+ /** Görünür olup olmadığı */
6005
+ inView?: boolean;
6006
+ /** Manuel trigger */
6007
+ trigger?: boolean;
6008
+ /** Animasyon tekrar edebilir mi */
6009
+ once?: boolean;
6010
+ /** Threshold değeri (intersection observer için) */
6011
+ threshold?: number;
6012
+ /** Root margin (intersection observer için) */
6013
+ rootMargin?: string;
6014
+ /** Animasyon tamamlandığında çağırılacak fonksiyon */
6015
+ onAnimationComplete?: () => void;
6016
+ }
6017
+ declare const BlurFade: React__default.FC<BlurFadeProps>;
6018
+
6019
+ /**
6020
+ * Shimmer Component
6021
+ *
6022
+ * Yükleme shimmer efekt bileşeni
6023
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6024
+ *
6025
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6026
+ * @license MIT
6027
+ */
6028
+ interface ShimmerProps {
6029
+ /** Alt içerik */
6030
+ children?: React__default.ReactNode;
6031
+ /** CSS sınıfı */
6032
+ className?: string;
6033
+ /** Shimmer genişliği */
6034
+ width?: string | number;
6035
+ /** Shimmer yüksekliği */
6036
+ height?: string | number;
6037
+ /** Animasyon süresi (saniye) */
6038
+ duration?: number;
6039
+ /** Shimmer rengi */
6040
+ shimmerColor?: string;
6041
+ /** Arka plan rengi */
6042
+ backgroundColor?: string;
6043
+ /** Yönü */
6044
+ direction?: 'ltr' | 'rtl' | 'ttb' | 'btt';
6045
+ /** Animasyon tekrarı */
6046
+ repeat?: 'infinite' | number;
6047
+ /** Shimmer boyutu (gradyan genişliği %) */
6048
+ shimmerSize?: number;
6049
+ /** Kenar yuvarlaklığı */
6050
+ borderRadius?: string;
6051
+ /** Aktif/pasif durumu */
6052
+ active?: boolean;
6053
+ }
6054
+ declare const Shimmer: React__default.FC<ShimmerProps>;
6055
+
6056
+ /**
6057
+ * Ripple Component
6058
+ *
6059
+ * Ripple dalga efekt bileşeni
6060
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6061
+ *
6062
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6063
+ * @license MIT
6064
+ */
6065
+ interface RippleProps {
6066
+ /** Alt içerik */
6067
+ children?: React__default.ReactNode;
6068
+ /** CSS sınıfı */
6069
+ className?: string;
6070
+ /** Ripple rengi */
6071
+ color?: string;
6072
+ /** Animasyon süresi (ms) */
6073
+ duration?: number;
6074
+ /** Maksimum ripple sayısı */
6075
+ maxRipples?: number;
6076
+ /** Ripple boyutu */
6077
+ size?: 'small' | 'medium' | 'large' | number;
6078
+ /** Trigger olayı */
6079
+ trigger?: 'click' | 'hover' | 'focus' | 'none';
6080
+ /** Manuel ripple tetikleme */
6081
+ ripple?: boolean;
6082
+ /** Container CSS sınıfı */
6083
+ containerClassName?: string;
6084
+ /** Ripple tamamlandığında çağırılacak fonksiyon */
6085
+ onRippleComplete?: () => void;
6086
+ /** Devre dışı durumu */
6087
+ disabled?: boolean;
6088
+ /** Ripple merkezi (x, y koordinatları) */
6089
+ center?: {
6090
+ x: number;
6091
+ y: number;
6092
+ } | null;
6093
+ }
6094
+ declare const Ripple: React__default.FC<RippleProps>;
6095
+
6096
+ /**
6097
+ * Sparkles Component
6098
+ *
6099
+ * Parıltı efekt bileşeni
6100
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6101
+ *
6102
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6103
+ * @license MIT
6104
+ */
6105
+ interface SparklesProps {
6106
+ /** Alt içerik */
6107
+ children?: React__default.ReactNode;
6108
+ /** CSS sınıfı */
6109
+ className?: string;
6110
+ /** Container CSS sınıfı */
6111
+ containerClassName?: string;
6112
+ /** Sparkle rengi */
6113
+ color?: string;
6114
+ /** Maksimum sparkle sayısı */
6115
+ count?: number;
6116
+ /** Sparkle boyutu aralığı */
6117
+ size?: {
6118
+ min: number;
6119
+ max: number;
6120
+ };
6121
+ /** Animasyon süresi aralığı (ms) */
6122
+ duration?: {
6123
+ min: number;
6124
+ max: number;
6125
+ };
6126
+ /** Yoğunluk (sparkle oluşturma sıklığı) */
6127
+ density?: 'low' | 'medium' | 'high';
6128
+ /** Sparkle şekli */
6129
+ shape?: 'star' | 'circle' | 'square' | 'diamond';
6130
+ /** Otomatik sparkle oluşturma */
6131
+ autoGenerate?: boolean;
6132
+ /** Mouse hover efekti */
6133
+ interactive?: boolean;
6134
+ /** Animasyon durumu */
6135
+ active?: boolean;
6136
+ /** Sparkle opacity aralığı */
6137
+ opacity?: {
6138
+ min: number;
6139
+ max: number;
6140
+ };
6141
+ /** Parıltı tetikleme olayı */
6142
+ trigger?: 'hover' | 'click' | 'continuous' | 'none';
6143
+ }
6144
+ declare const Sparkles: React__default.FC<SparklesProps>;
6145
+
6146
+ /**
6147
+ * Spotlight Component
6148
+ *
6149
+ * Gelişmiş spotlight hover efekt bileşeni
6150
+ * Multiple spotlight, gradient effects, animations ve performance optimizations içerir
6151
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6152
+ *
6153
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6154
+ * @license MIT
6155
+ */
6156
+ interface SpotlightData {
6157
+ /** Spotlight rengi */
6158
+ color: string;
6159
+ /** Spotlight boyutu */
6160
+ size: number;
6161
+ /** Spotlight pozisyonu (opsiyonel, mouse takibi için) */
6162
+ position?: {
6163
+ x: number;
6164
+ y: number;
6165
+ };
6166
+ /** Bu spotlight için yoğunluk */
6167
+ intensity?: number;
6168
+ /** Bu spotlight için blur */
6169
+ blur?: number;
6170
+ /** Bu spotlight için şekil */
6171
+ shape?: 'circle' | 'ellipse' | 'polygon' | 'star' | 'heart';
6172
+ /** Bu spotlight için blend mode */
6173
+ blendMode?: string;
6174
+ /** Spotlight trail efekti */
6175
+ trail?: {
6176
+ length: number;
6177
+ decay: number;
6178
+ color?: string;
6179
+ };
6180
+ /** Motion blur ayarları */
6181
+ motionBlur?: {
6182
+ intensity: number;
6183
+ direction: 'horizontal' | 'vertical' | 'radial';
6184
+ };
6185
+ /** Mask şekli */
6186
+ mask?: {
6187
+ type: 'cutout' | 'reveal';
6188
+ shape: string;
6189
+ invert?: boolean;
6190
+ };
6191
+ /** 3D derinlik efekti */
6192
+ depth?: {
6193
+ z: number;
6194
+ perspective: number;
6195
+ shadow?: boolean;
6196
+ };
6197
+ }
6198
+ interface SpotlightProps {
6199
+ /** Alt içerik */
6200
+ children: React__default.ReactNode;
6201
+ /** CSS sınıfı */
6202
+ className?: string;
6203
+ /** Container CSS sınıfı */
6204
+ containerClassName?: string;
6205
+ /** Tek spotlight için renk (backwards compatibility) */
6206
+ color?: string;
6207
+ /** Tek spotlight için boyut (backwards compatibility) */
6208
+ size?: number;
6209
+ /** Multiple spotlights dizisi */
6210
+ spotlights?: SpotlightData[];
6211
+ /** Spotlight yoğunluğu (0-1) */
6212
+ intensity?: number;
6213
+ /** Smooth takip */
6214
+ smooth?: boolean;
6215
+ /** Smooth gecikmesi (ms) */
6216
+ smoothDelay?: number;
6217
+ /** Başlangıçta göster */
6218
+ initialShow?: boolean;
6219
+ /** Sadece hover'da göster */
6220
+ hoverOnly?: boolean;
6221
+ /** Blur miktarı */
6222
+ blur?: number;
6223
+ /** Spotlight şekli */
6224
+ shape?: 'circle' | 'ellipse';
6225
+ /** Animasyon süresi */
6226
+ duration?: number;
6227
+ /** Easing function */
6228
+ easing?: string;
6229
+ /** Z-index */
6230
+ zIndex?: number;
6231
+ /** Spotlight merkezini manuel olarak ayarla */
6232
+ center?: {
6233
+ x: number;
6234
+ y: number;
6235
+ } | null;
6236
+ /** Pulse/breathing animasyon modu */
6237
+ pulseAnimation?: boolean;
6238
+ /** Pulse hızı (ms) */
6239
+ pulseSpeed?: number;
6240
+ /** Grid/pattern overlay */
6241
+ gridOverlay?: boolean;
6242
+ /** Grid boyutu */
6243
+ gridSize?: number;
6244
+ /** Blend mode */
6245
+ blendMode?: 'normal' | 'screen' | 'overlay' | 'multiply' | 'color-dodge' | 'hard-light';
6246
+ /** Directional spotlight (açı derece) */
6247
+ direction?: number;
6248
+ /** Magnetic attraction to elements */
6249
+ magnetic?: boolean;
6250
+ /** Magnetic force strength */
6251
+ magneticStrength?: number;
6252
+ /** Performance mode (requestAnimationFrame kullanır) */
6253
+ performanceMode?: boolean;
6254
+ /** Custom cursor style */
6255
+ cursorStyle?: 'none' | 'pointer' | 'crosshair' | 'grab';
6256
+ /** Touch support */
6257
+ touchSupport?: boolean;
6258
+ /** Gradient spotlight (multiple colors) */
6259
+ gradientColors?: string[];
6260
+ /** Spotlight rotation */
6261
+ rotation?: number;
6262
+ /** Auto animation */
6263
+ autoAnimation?: boolean;
6264
+ /** Auto animation speed */
6265
+ autoSpeed?: number;
6266
+ /** Heat map mode - intensity based on data */
6267
+ heatMap?: {
6268
+ data: Array<{
6269
+ x: number;
6270
+ y: number;
6271
+ intensity: number;
6272
+ }>;
6273
+ colors: string[];
6274
+ interpolation: 'linear' | 'smooth' | 'sharp';
6275
+ };
6276
+ /** Wave animation pattern */
6277
+ waveAnimation?: {
6278
+ type: 'ripple' | 'sine' | 'pulse' | 'spiral';
6279
+ frequency: number;
6280
+ amplitude: number;
6281
+ speed: number;
6282
+ };
6283
+ /** Advanced shadow configuration */
6284
+ shadowConfig?: {
6285
+ enabled: boolean;
6286
+ color: string;
6287
+ blur: number;
6288
+ offset: {
6289
+ x: number;
6290
+ y: number;
6291
+ };
6292
+ spread: number;
6293
+ };
6294
+ /** WebGL rendering for performance */
6295
+ webGLMode?: boolean;
6296
+ /** Particle effects */
6297
+ particles?: {
6298
+ count: number;
6299
+ size: number;
6300
+ speed: number;
6301
+ color: string;
6302
+ trail: boolean;
6303
+ };
6304
+ /** Multi-layer support */
6305
+ layers?: Array<{
6306
+ spotlight: SpotlightData;
6307
+ zIndex: number;
6308
+ opacity: number;
6309
+ }>;
6310
+ /** Interactive zones */
6311
+ interactiveZones?: Array<{
6312
+ bounds: {
6313
+ x: number;
6314
+ y: number;
6315
+ width: number;
6316
+ height: number;
6317
+ };
6318
+ spotlight: SpotlightData;
6319
+ trigger: 'hover' | 'click' | 'proximity';
6320
+ }>;
6321
+ }
6322
+ declare const Spotlight: React__default.FC<SpotlightProps>;
6323
+
6324
+ /**
6325
+ * GlowEffect Component
6326
+ *
6327
+ * Adds dynamic glow effects to elements with customizable animations
6328
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6329
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6330
+ *
6331
+ * @author MoonUI Team
6332
+ * @license MIT
6333
+ * @credits React Bits by David H
6334
+ */
6335
+ interface GlowEffectProps {
6336
+ /** Content to apply glow effect */
6337
+ children: React__default.ReactNode;
6338
+ /** Glow color */
6339
+ color?: string;
6340
+ /** Glow intensity (blur radius) */
6341
+ intensity?: number;
6342
+ /** Glow spread radius */
6343
+ spread?: number;
6344
+ /** Animation type */
6345
+ animation?: 'pulse' | 'breathe' | 'flicker' | 'wave' | 'rainbow' | 'none';
6346
+ /** Animation duration in ms */
6347
+ duration?: number;
6348
+ /** Enable gradient glow */
6349
+ gradient?: boolean;
6350
+ /** Gradient colors */
6351
+ gradientColors?: string[];
6352
+ /** Gradient direction */
6353
+ gradientDirection?: number;
6354
+ /** Enable multi-layer glow */
6355
+ multiLayer?: boolean;
6356
+ /** Number of glow layers */
6357
+ layers?: number;
6358
+ /** Layer offset multiplier */
6359
+ layerOffset?: number;
6360
+ /** Enable hover effect */
6361
+ hoverEffect?: boolean;
6362
+ /** Hover intensity multiplier */
6363
+ hoverIntensity?: number;
6364
+ /** Enable mouse tracking */
6365
+ mouseTracking?: boolean;
6366
+ /** Mouse effect radius */
6367
+ mouseRadius?: number;
6368
+ /** Glow shape */
6369
+ shape?: 'box' | 'circle' | 'star' | 'hexagon';
6370
+ /** Enable inner glow */
6371
+ innerGlow?: boolean;
6372
+ /** Inner glow intensity */
6373
+ innerIntensity?: number;
6374
+ /** Enable text glow */
6375
+ textGlow?: boolean;
6376
+ /** Text glow color */
6377
+ textGlowColor?: string;
6378
+ /** Enable blur backdrop */
6379
+ backdrop?: boolean;
6380
+ /** Backdrop blur amount */
6381
+ backdropBlur?: number;
6382
+ /** Enable neon effect */
6383
+ neon?: boolean;
6384
+ /** Neon flicker frequency */
6385
+ flickerFrequency?: number;
6386
+ /** Custom CSS filter */
6387
+ customFilter?: string;
6388
+ /** Z-index for glow layers */
6389
+ zIndex?: number;
6390
+ /** Container class */
6391
+ containerClassName?: string;
6392
+ /** Glow class */
6393
+ glowClassName?: string;
6394
+ /** Disable on mobile */
6395
+ disableOnMobile?: boolean;
6396
+ }
6397
+ declare const GlowEffect: React__default.FC<GlowEffectProps>;
6398
+
6399
+ /**
6400
+ * NeonEffect Component
6401
+ *
6402
+ * Creates retro neon sign effects with glowing borders and text
6403
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6404
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6405
+ *
6406
+ * @author MoonUI Team
6407
+ * @license MIT
6408
+ * @credits React Bits by David H
6409
+ */
6410
+ interface NeonEffectProps {
6411
+ /** Content to apply neon effect */
6412
+ children: React__default.ReactNode;
6413
+ /** Primary neon color */
6414
+ color?: string;
6415
+ /** Secondary neon color for dual-tone effect */
6416
+ secondaryColor?: string;
6417
+ /** Neon intensity */
6418
+ intensity?: number;
6419
+ /** Border width for neon outline */
6420
+ borderWidth?: number;
6421
+ /** Enable text neon effect */
6422
+ textNeon?: boolean;
6423
+ /** Enable border neon effect */
6424
+ borderNeon?: boolean;
6425
+ /** Animation type */
6426
+ animation?: 'pulse' | 'flicker' | 'electric' | 'wave' | 'breathing' | 'none';
6427
+ /** Animation speed in ms */
6428
+ speed?: number;
6429
+ /** Flicker frequency (0-1) */
6430
+ flickerFrequency?: number;
6431
+ /** Enable realistic tube segments */
6432
+ tubeSegments?: boolean;
6433
+ /** Number of tube segments */
6434
+ segmentCount?: number;
6435
+ /** Enable broken neon effect */
6436
+ broken?: boolean;
6437
+ /** Broken segments indices */
6438
+ brokenSegments?: number[];
6439
+ /** Enable rainbow cycle */
6440
+ rainbow?: boolean;
6441
+ /** Rainbow speed */
6442
+ rainbowSpeed?: number;
6443
+ /** Enable neon reflection */
6444
+ reflection?: boolean;
6445
+ /** Reflection opacity */
6446
+ reflectionOpacity?: number;
6447
+ /** Background glow */
6448
+ backgroundGlow?: boolean;
6449
+ /** Background glow intensity */
6450
+ backgroundIntensity?: number;
6451
+ /** Enable vintage filter */
6452
+ vintage?: boolean;
6453
+ /** Vintage filter intensity */
6454
+ vintageIntensity?: number;
6455
+ /** Enable electric spark effect */
6456
+ electricSparks?: boolean;
6457
+ /** Spark frequency */
6458
+ sparkFrequency?: number;
6459
+ /** Custom font for text */
6460
+ fontFamily?: string;
6461
+ /** Font weight for text */
6462
+ fontWeight?: number | string;
6463
+ /** Letter spacing for text */
6464
+ letterSpacing?: string;
6465
+ /** Text transform */
6466
+ textTransform?: 'none' | 'uppercase' | 'lowercase' | 'capitalize';
6467
+ /** Container class */
6468
+ containerClassName?: string;
6469
+ /** Neon class */
6470
+ neonClassName?: string;
6471
+ /** Disable on reduced motion */
6472
+ respectReducedMotion?: boolean;
6473
+ }
6474
+ declare const NeonEffect: React__default.FC<NeonEffectProps>;
6475
+
6476
+ /**
6477
+ * Morphing Text Component
6478
+ *
6479
+ * Metamorfoz text animasyon bileşeni
6480
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6481
+ *
6482
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6483
+ * @license MIT
6484
+ */
6485
+ interface MorphingTextProps {
6486
+ /** Gösterilecek metinler dizisi */
6487
+ texts: string[];
6488
+ /** CSS sınıfı */
6489
+ className?: string;
6490
+ /** Her metin arası geçiş süresi (ms) */
6491
+ duration?: number;
6492
+ /** Animasyon süresi (ms) */
6493
+ animationDuration?: number;
6494
+ /** Döngü yapılsın mı */
6495
+ loop?: boolean;
6496
+ /** Başlangıç metni index'i */
6497
+ startIndex?: number;
6498
+ /** Animasyon tamamlandığında çağırılacak fonksiyon */
6499
+ onComplete?: (currentIndex: number) => void;
6500
+ /** Manuel kontrol */
6501
+ paused?: boolean;
6502
+ /** Morph efekt tipi */
6503
+ morphType?: 'scale' | 'blur' | 'opacity' | 'slide';
6504
+ /** Metin arası geçiş efekti */
6505
+ transition?: 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear';
6506
+ }
6507
+ declare const MorphingText: React__default.FC<MorphingTextProps>;
6508
+
6509
+ /**
6510
+ * Flip Text Component
6511
+ *
6512
+ * Çevirme text animasyon bileşeni
6513
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6514
+ *
6515
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6516
+ * @license MIT
6517
+ */
6518
+ interface FlipTextProps {
6519
+ /** Gösterilecek metinler dizisi */
6520
+ texts: string[];
6521
+ /** CSS sınıfı */
6522
+ className?: string;
6523
+ /** Her metin arası geçiş süresi (ms) */
6524
+ duration?: number;
6525
+ /** Animasyon süresi (ms) */
6526
+ animationDuration?: number;
6527
+ /** Döngü yapılsın mı */
6528
+ loop?: boolean;
6529
+ /** Başlangıç metni index'i */
6530
+ startIndex?: number;
6531
+ /** Çevirme yönü */
6532
+ direction?: 'horizontal' | 'vertical';
6533
+ /** Animasyon tamamlandığında çağırılacak fonksiyon */
6534
+ onComplete?: (currentIndex: number) => void;
6535
+ /** Manuel kontrol */
6536
+ paused?: boolean;
6537
+ /** Easing function */
6538
+ easing?: 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear';
6539
+ /** 3D perspektif efekti */
6540
+ perspective?: boolean;
6541
+ /** Perspektif uzaklığı (px) */
6542
+ perspectiveDistance?: number;
6543
+ }
6544
+ declare const FlipText: React__default.FC<FlipTextProps>;
6545
+
6546
+ /**
6547
+ * Number Ticker Component
6548
+ *
6549
+ * Animasyonlu sayı ticker bileşeni
6550
+ * React Bits'ten uyarlanmıştır: https://github.com/DavidHDev/react-bits
6551
+ *
6552
+ * @author React Bits Team (Original), MoonUI Team (Adaptation)
6553
+ * @license MIT
6554
+ */
6555
+ interface NumberTickerProps {
6556
+ /** Hedef sayı */
6557
+ value: number;
6558
+ /** CSS sınıfı */
6559
+ className?: string;
6560
+ /** Animasyon süresi (ms) */
6561
+ duration?: number;
6562
+ /** Başlangıç değeri */
6563
+ startValue?: number;
6564
+ /** Sayı formatı */
6565
+ format?: (value: number) => string;
6566
+ /** Ondalık basamak sayısı */
6567
+ decimalPlaces?: number;
6568
+ /** Ayırıcı karakteri (binlik) */
6569
+ separator?: string;
6570
+ /** Ondalık ayırıcısı */
6571
+ decimalSeparator?: string;
6572
+ /** Prefix */
6573
+ prefix?: string;
6574
+ /** Suffix */
6575
+ suffix?: string;
6576
+ /** Easing function */
6577
+ easing?: 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'bounce';
6578
+ /** Animasyon tamamlandığında çağırılacak fonksiyon */
6579
+ onComplete?: () => void;
6580
+ /** Intersection observer kullan */
6581
+ useIntersectionObserver?: boolean;
6582
+ /** Threshold değeri */
6583
+ threshold?: number;
6584
+ /** Tekrar animasyon yapılsın mı */
6585
+ repeat?: boolean;
6586
+ }
6587
+ declare const NumberTicker: React__default.FC<NumberTickerProps>;
6588
+
6589
+ /**
6590
+ * WavyText Component
6591
+ *
6592
+ * Animated wavy text effect with customizable wave patterns
6593
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6594
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6595
+ *
6596
+ * @author MoonUI Team
6597
+ * @license MIT
6598
+ * @credits React Bits by David H
6599
+ */
6600
+ interface WavyTextProps {
6601
+ /** Text to display with wavy animation */
6602
+ text: string;
6603
+ /** CSS class for styling */
6604
+ className?: string;
6605
+ /** Animation duration in ms */
6606
+ duration?: number;
6607
+ /** Delay between each character in ms */
6608
+ delay?: number;
6609
+ /** Wave amplitude (height) */
6610
+ amplitude?: number;
6611
+ /** Wave frequency */
6612
+ frequency?: number;
6613
+ /** Text color */
6614
+ color?: string;
6615
+ /** Font size */
6616
+ fontSize?: string;
6617
+ /** Font weight */
6618
+ fontWeight?: number | string;
6619
+ /** Enable gradient effect */
6620
+ gradient?: boolean;
6621
+ /** Gradient colors */
6622
+ gradientColors?: string[];
6623
+ /** Wave direction */
6624
+ direction?: 'up' | 'down' | 'both';
6625
+ /** Animation timing function */
6626
+ easing?: 'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'bounce' | 'elastic';
6627
+ /** Continuous or single animation */
6628
+ continuous?: boolean;
6629
+ /** Enable hover to pause */
6630
+ pauseOnHover?: boolean;
6631
+ /** Character spacing */
6632
+ spacing?: string;
6633
+ /** Enable shadow effect */
6634
+ shadow?: boolean;
6635
+ /** Shadow color */
6636
+ shadowColor?: string;
6637
+ /** Enable blur effect during animation */
6638
+ blur?: boolean;
6639
+ /** Blur amount */
6640
+ blurAmount?: number;
6641
+ /** Enable scale effect */
6642
+ scale?: boolean;
6643
+ /** Scale amount */
6644
+ scaleAmount?: number;
6645
+ /** Enable rotation effect */
6646
+ rotate?: boolean;
6647
+ /** Rotation degrees */
6648
+ rotationDegrees?: number;
6649
+ /** Trigger animation on viewport */
6650
+ triggerOnView?: boolean;
6651
+ /** Viewport threshold for trigger */
6652
+ viewThreshold?: number;
6653
+ /** Custom separator (for word animation) */
6654
+ separator?: string;
6655
+ /** Animate by words instead of characters */
6656
+ animateWords?: boolean;
6657
+ }
6658
+ declare const WavyText: React__default.FC<WavyTextProps>;
6659
+
6660
+ /**
6661
+ * GradientText Component
6662
+ *
6663
+ * Animated gradient text with multiple animation styles
6664
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6665
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6666
+ *
6667
+ * @author MoonUI Team
6668
+ * @license MIT
6669
+ * @credits React Bits by David H
6670
+ */
6671
+ interface GradientTextProps {
6672
+ /** Text to display */
6673
+ text: string;
6674
+ /** CSS class for styling */
6675
+ className?: string;
6676
+ /** Gradient colors */
6677
+ colors?: string[];
6678
+ /** Gradient direction */
6679
+ direction?: number | 'horizontal' | 'vertical' | 'diagonal' | 'radial';
6680
+ /** Animation type */
6681
+ animationType?: 'flow' | 'pulse' | 'shift' | 'rotate' | 'wave' | 'none';
6682
+ /** Animation duration in ms */
6683
+ duration?: number;
6684
+ /** Font size */
6685
+ fontSize?: string;
6686
+ /** Font weight */
6687
+ fontWeight?: number | string;
6688
+ /** Enable background clip */
6689
+ backgroundClip?: boolean;
6690
+ /** Text shadow */
6691
+ textShadow?: string;
6692
+ /** Letter spacing */
6693
+ letterSpacing?: string;
6694
+ /** Line height */
6695
+ lineHeight?: string;
6696
+ /** Text transform */
6697
+ textTransform?: 'none' | 'uppercase' | 'lowercase' | 'capitalize';
6698
+ /** Enable hover effect */
6699
+ hoverEffect?: boolean;
6700
+ /** Hover scale */
6701
+ hoverScale?: number;
6702
+ /** Enable glow effect */
6703
+ glow?: boolean;
6704
+ /** Glow color */
6705
+ glowColor?: string;
6706
+ /** Glow intensity */
6707
+ glowIntensity?: number;
6708
+ /** Enable rainbow mode */
6709
+ rainbow?: boolean;
6710
+ /** Rainbow speed (ms) */
6711
+ rainbowSpeed?: number;
6712
+ /** Enable shimmer effect */
6713
+ shimmer?: boolean;
6714
+ /** Shimmer color */
6715
+ shimmerColor?: string;
6716
+ /** Gradient size (for flow animation) */
6717
+ gradientSize?: string;
6718
+ /** Enable 3D effect */
6719
+ enable3D?: boolean;
6720
+ /** 3D depth */
6721
+ depth?: number;
6722
+ /** Custom CSS gradient */
6723
+ customGradient?: string;
6724
+ /** Enable text stroke */
6725
+ stroke?: boolean;
6726
+ /** Stroke width */
6727
+ strokeWidth?: string;
6728
+ /** Stroke color */
6729
+ strokeColor?: string;
6730
+ /** Trigger animation on viewport */
6731
+ triggerOnView?: boolean;
6732
+ /** Viewport threshold */
6733
+ viewThreshold?: number;
6734
+ }
6735
+ declare const GradientText: React__default.FC<GradientTextProps>;
6736
+
6737
+ /**
6738
+ * Text3D Component
6739
+ *
6740
+ * 3D text effect with depth, rotation, and perspective
6741
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6742
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6743
+ *
6744
+ * @author MoonUI Team
6745
+ * @license MIT
6746
+ * @credits React Bits by David H
6747
+ */
6748
+ interface Text3DProps {
6749
+ /** Text to display */
6750
+ text: string;
6751
+ /** CSS class for styling */
6752
+ className?: string;
6753
+ /** Depth of 3D effect (number of layers) */
6754
+ depth?: number;
6755
+ /** Depth offset in pixels */
6756
+ depthOffset?: number;
6757
+ /** Primary text color */
6758
+ color?: string;
6759
+ /** Shadow/depth color */
6760
+ shadowColor?: string;
6761
+ /** Font size */
6762
+ fontSize?: string;
6763
+ /** Font weight */
6764
+ fontWeight?: number | string;
6765
+ /** Font family */
6766
+ fontFamily?: string;
6767
+ /** Letter spacing */
6768
+ letterSpacing?: string;
6769
+ /** Text transform */
6770
+ textTransform?: 'none' | 'uppercase' | 'lowercase' | 'capitalize';
6771
+ /** 3D style */
6772
+ style?: 'extrude' | 'shadow' | 'neon' | 'retro' | 'glass' | 'metallic';
6773
+ /** Enable rotation */
6774
+ rotate?: boolean;
6775
+ /** Rotation X axis */
6776
+ rotateX?: number;
6777
+ /** Rotation Y axis */
6778
+ rotateY?: number;
6779
+ /** Rotation Z axis */
6780
+ rotateZ?: number;
6781
+ /** Perspective distance */
6782
+ perspective?: number;
6783
+ /** Enable hover effect */
6784
+ hoverEffect?: boolean;
6785
+ /** Hover rotation X */
6786
+ hoverRotateX?: number;
6787
+ /** Hover rotation Y */
6788
+ hoverRotateY?: number;
6789
+ /** Hover scale */
6790
+ hoverScale?: number;
6791
+ /** Enable animation */
6792
+ animate?: boolean;
6793
+ /** Animation type */
6794
+ animationType?: 'float' | 'rotate' | 'pulse' | 'wave';
6795
+ /** Animation duration in ms */
6796
+ duration?: number;
6797
+ /** Enable gradient on text */
6798
+ gradient?: boolean;
6799
+ /** Gradient colors */
6800
+ gradientColors?: string[];
6801
+ /** Enable outline */
6802
+ outline?: boolean;
6803
+ /** Outline width */
6804
+ outlineWidth?: string;
6805
+ /** Outline color */
6806
+ outlineColor?: string;
6807
+ /** Enable glow effect */
6808
+ glow?: boolean;
6809
+ /** Glow color */
6810
+ glowColor?: string;
6811
+ /** Glow intensity */
6812
+ glowIntensity?: number;
6813
+ /** Enable reflection */
6814
+ reflection?: boolean;
6815
+ /** Reflection opacity */
6816
+ reflectionOpacity?: number;
6817
+ /** Material style */
6818
+ material?: 'matte' | 'glossy' | 'chrome' | 'neon';
6819
+ /** Light direction for shadows */
6820
+ lightDirection?: 'top' | 'bottom' | 'left' | 'right' | 'center';
6821
+ }
6822
+ declare const Text3D: React__default.FC<Text3DProps>;
6823
+
6824
+ interface DocsProProviderProps {
6825
+ children: React__default.ReactNode;
6826
+ componentName?: string;
6827
+ }
6828
+ declare function DocsProProvider({ children, componentName }: DocsProProviderProps): react_jsx_runtime.JSX.Element;
6829
+
6830
+ /**
6831
+ * MouseTrail Component
6832
+ *
6833
+ * High-performance interactive particle trail following mouse movement
6834
+ * Optimized with frame rate limiting, object pooling, and efficient rendering
6835
+ *
6836
+ * @author MoonUI Team
6837
+ * @license Commercial
6838
+ */
6839
+ interface MouseTrailProps {
6840
+ /** Child content */
6841
+ children?: React__default.ReactNode;
6842
+ /** Trail style */
6843
+ style?: 'dots' | 'lines' | 'circles' | 'stars' | 'hearts' | 'custom';
6844
+ /** Trail colors */
6845
+ colors?: string[];
6846
+ /** Trail particle size */
6847
+ size?: number;
6848
+ /** Trail length (number of particles) */
6849
+ length?: number;
6850
+ /** Particle lifetime in ms */
6851
+ lifetime?: number;
6852
+ /** Fade out effect */
6853
+ fadeOut?: boolean;
6854
+ /** Glow effect */
6855
+ glow?: boolean;
6856
+ /** Glow intensity */
6857
+ glowIntensity?: number;
6858
+ /** Trail spacing (distance between particles) */
6859
+ spacing?: number;
6860
+ /** Enable smooth interpolation */
6861
+ smooth?: boolean;
6862
+ /** Interpolation factor (0-1) */
6863
+ smoothFactor?: number;
6864
+ /** Enable gravity */
6865
+ gravity?: boolean;
6866
+ /** Gravity strength */
6867
+ gravityStrength?: number;
6868
+ /** Enable wind effect */
6869
+ wind?: boolean;
6870
+ /** Wind strength */
6871
+ windStrength?: number;
6872
+ /** Wind direction in degrees */
6873
+ windDirection?: number;
6874
+ /** Enable sparkle effect */
6875
+ sparkle?: boolean;
6876
+ /** Sparkle frequency (0-1) */
6877
+ sparkleFrequency?: number;
6878
+ /** Enable rainbow mode */
6879
+ rainbow?: boolean;
6880
+ /** Rainbow speed */
6881
+ rainbowSpeed?: number;
6882
+ /** Custom shape (SVG path or emoji) */
6883
+ customShape?: string;
6884
+ /** Enable blur effect */
6885
+ blur?: boolean;
6886
+ /** Blur amount */
6887
+ blurAmount?: number;
6888
+ /** Enable rotation */
6889
+ rotate?: boolean;
6890
+ /** Rotation speed */
6891
+ rotationSpeed?: number;
6892
+ /** Enable scale animation */
6893
+ scaleAnimation?: boolean;
6894
+ /** Scale range [min, max] */
6895
+ scaleRange?: [number, number];
6896
+ /** Enable on mobile/touch devices */
6897
+ enableTouch?: boolean;
6898
+ /** Z-index for trail */
6899
+ zIndex?: number;
6900
+ /** Container class */
6901
+ containerClassName?: string;
6902
+ /** Canvas class */
6903
+ className?: string;
6904
+ }
6905
+ declare const MouseTrail: React__default.FC<MouseTrailProps>;
6906
+
6907
+ /**
6908
+ * MagneticElements Component
6909
+ *
6910
+ * High-performance magnetic effect where elements are attracted to or repelled from cursor
6911
+ * Optimized for smooth animations and professional interactions
6912
+ *
6913
+ * @author MoonUI Team
6914
+ * @license Commercial
6915
+ */
6916
+ interface MagneticElementsProps {
6917
+ /** Child elements to apply magnetic effect */
6918
+ children: React__default.ReactNode;
6919
+ /** Magnetic field strength (0-1) */
6920
+ strength?: number;
6921
+ /** Magnetic field radius in pixels */
6922
+ radius?: number;
6923
+ /** Effect type */
6924
+ type?: 'attract' | 'repel' | 'elastic' | 'orbit';
6925
+ /** Enable on touch devices */
6926
+ enableTouch?: boolean;
6927
+ /** Spring damping factor (0-1) */
6928
+ damping?: number;
6929
+ /** Spring stiffness (0-1) */
6930
+ stiffness?: number;
6931
+ /** Enable rotation effect */
6932
+ rotate?: boolean;
6933
+ /** Rotation strength in degrees */
6934
+ rotationStrength?: number;
6935
+ /** Enable scale effect */
6936
+ scale?: boolean;
6937
+ /** Scale factor (1-2) */
6938
+ scaleFactor?: number;
6939
+ /** Enable 3D tilt effect */
6940
+ tilt?: boolean;
6941
+ /** Tilt angle in degrees */
6942
+ tiltAngle?: number;
6943
+ /** Enable boundary constraint */
6944
+ constrain?: boolean;
6945
+ /** Max displacement in pixels */
6946
+ maxDisplacement?: number;
6947
+ /** Return to origin speed (0-1) */
6948
+ returnSpeed?: number;
6949
+ /** Enable smooth transitions */
6950
+ smooth?: boolean;
6951
+ /** Smoothing factor (0-1) */
6952
+ smoothing?: number;
6953
+ /** Performance mode */
6954
+ performance?: 'low' | 'balanced' | 'high';
6955
+ /** Enable glow effect on interaction */
6956
+ glow?: boolean;
6957
+ /** Glow color */
6958
+ glowColor?: string;
6959
+ /** Container class */
6960
+ containerClassName?: string;
6961
+ /** Element class */
6962
+ elementClassName?: string;
6963
+ /** Debug mode */
6964
+ debug?: boolean;
6965
+ }
6966
+ declare const MagneticElements: React__default.FC<MagneticElementsProps>;
6967
+
6968
+ /**
6969
+ * ScrollReveal Component
6970
+ *
6971
+ * Reveals content with animations when scrolling into view
6972
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
6973
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
6974
+ *
6975
+ * @author MoonUI Team
6976
+ * @license MIT
6977
+ * @credits React Bits by David H
6978
+ */
6979
+ interface ScrollRevealProps {
6980
+ /** Content to reveal */
6981
+ children: React__default.ReactNode;
6982
+ /** Animation type */
6983
+ animation?: 'fade' | 'slide' | 'zoom' | 'flip' | 'bounce' | 'rotate' | 'blur';
6984
+ /** Direction for slide/flip animations */
6985
+ direction?: 'up' | 'down' | 'left' | 'right';
6986
+ /** Animation duration in ms */
6987
+ duration?: number;
6988
+ /** Animation delay in ms */
6989
+ delay?: number;
6990
+ /** Easing function */
6991
+ easing?: string;
6992
+ /** Viewport threshold for trigger (0-1) */
6993
+ threshold?: number;
6994
+ /** Trigger once or every time */
6995
+ once?: boolean;
6996
+ /** Initial opacity */
6997
+ initialOpacity?: number;
6998
+ /** Initial scale for zoom animation */
6999
+ initialScale?: number;
7000
+ /** Distance for slide animation */
7001
+ distance?: string | number;
7002
+ /** Rotation degrees for rotate animation */
7003
+ rotation?: number;
7004
+ /** Enable cascade effect for multiple children */
7005
+ cascade?: boolean;
7006
+ /** Cascade delay between children */
7007
+ cascadeDelay?: number;
7008
+ /** Enable parallax effect */
7009
+ parallax?: boolean;
7010
+ /** Parallax speed */
7011
+ parallaxSpeed?: number;
7012
+ /** Enable stagger animation for children */
7013
+ stagger?: boolean;
7014
+ /** Stagger delay */
7015
+ staggerDelay?: number;
7016
+ /** Custom animation keyframes */
7017
+ customAnimation?: string;
7018
+ /** Class name */
7019
+ className?: string;
7020
+ /** Container element tag */
7021
+ as?: keyof JSX.IntrinsicElements;
7022
+ /** Offset from viewport edge */
7023
+ offset?: number;
7024
+ /** Enable mobile animations */
7025
+ mobile?: boolean;
7026
+ /** Desktop-only animations */
7027
+ desktop?: boolean;
7028
+ /** Callback when animation starts */
7029
+ onReveal?: () => void;
7030
+ /** Callback when animation completes */
7031
+ onComplete?: () => void;
7032
+ /** Enable debug mode */
7033
+ debug?: boolean;
7034
+ }
7035
+ declare const ScrollReveal: React__default.FC<ScrollRevealProps>;
7036
+
7037
+ /**
7038
+ * BounceEffect Component
7039
+ *
7040
+ * Adds realistic bounce animations with physics simulation
7041
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7042
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7043
+ *
7044
+ * @author MoonUI Team
7045
+ * @license MIT
7046
+ * @credits React Bits by David H
7047
+ */
7048
+ interface BounceEffectProps {
7049
+ /** Content to apply bounce effect */
7050
+ children: React__default.ReactNode;
7051
+ /** Bounce trigger */
7052
+ trigger?: 'hover' | 'click' | 'auto' | 'scroll';
7053
+ /** Bounce direction */
7054
+ direction?: 'up' | 'down' | 'left' | 'right' | 'all';
7055
+ /** Bounce height/distance */
7056
+ distance?: number;
7057
+ /** Bounce duration in ms */
7058
+ duration?: number;
7059
+ /** Number of bounces */
7060
+ bounces?: number;
7061
+ /** Bounce elasticity (0-1) */
7062
+ elasticity?: number;
7063
+ /** Gravity strength */
7064
+ gravity?: number;
7065
+ /** Friction coefficient */
7066
+ friction?: number;
7067
+ /** Enable squash and stretch */
7068
+ squashStretch?: boolean;
7069
+ /** Squash amount */
7070
+ squashAmount?: number;
7071
+ /** Enable rotation during bounce */
7072
+ rotate?: boolean;
7073
+ /** Rotation degrees */
7074
+ rotationDegrees?: number;
7075
+ /** Enable shadow */
7076
+ shadow?: boolean;
7077
+ /** Shadow blur amount */
7078
+ shadowBlur?: number;
7079
+ /** Shadow offset */
7080
+ shadowOffset?: number;
7081
+ /** Enable trail effect */
7082
+ trail?: boolean;
7083
+ /** Trail opacity */
7084
+ trailOpacity?: number;
7085
+ /** Trail count */
7086
+ trailCount?: number;
7087
+ /** Enable shake effect */
7088
+ shake?: boolean;
7089
+ /** Shake intensity */
7090
+ shakeIntensity?: number;
7091
+ /** Bounce easing */
7092
+ easing?: 'linear' | 'ease' | 'ease-in' | 'ease-out' | 'bounce' | 'elastic';
7093
+ /** Scale on bounce */
7094
+ scale?: boolean;
7095
+ /** Scale factor */
7096
+ scaleFactor?: number;
7097
+ /** Enable jelly effect */
7098
+ jelly?: boolean;
7099
+ /** Jelly intensity */
7100
+ jellyIntensity?: number;
7101
+ /** Delay before animation */
7102
+ delay?: number;
7103
+ /** Enable infinite loop */
7104
+ infinite?: boolean;
7105
+ /** Pause between loops */
7106
+ pauseBetween?: number;
7107
+ /** Container class */
7108
+ containerClassName?: string;
7109
+ /** Bounce class */
7110
+ bounceClassName?: string;
7111
+ /** Callback on bounce start */
7112
+ onBounceStart?: () => void;
7113
+ /** Callback on bounce complete */
7114
+ onBounceComplete?: () => void;
7115
+ }
7116
+ declare const BounceEffect: React__default.FC<BounceEffectProps>;
7117
+
7118
+ /**
7119
+ * SpringPhysics Component
7120
+ *
7121
+ * Provides realistic spring physics animations with damping and tension
7122
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7123
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7124
+ *
7125
+ * @author MoonUI Team
7126
+ * @license MIT
7127
+ * @credits React Bits by David H
7128
+ */
7129
+ interface SpringPhysicsProps {
7130
+ /** Content to apply spring physics */
7131
+ children: React__default.ReactNode;
7132
+ /** Spring tension/stiffness (0-1) */
7133
+ tension?: number;
7134
+ /** Spring friction/damping (0-1) */
7135
+ friction?: number;
7136
+ /** Mass of the element */
7137
+ mass?: number;
7138
+ /** Initial velocity */
7139
+ initialVelocity?: {
7140
+ x?: number;
7141
+ y?: number;
7142
+ };
7143
+ /** Target position */
7144
+ target?: {
7145
+ x?: number;
7146
+ y?: number;
7147
+ };
7148
+ /** Animation trigger */
7149
+ trigger?: 'hover' | 'click' | 'drag' | 'auto' | 'scroll';
7150
+ /** Enable mouse tracking */
7151
+ mouseTracking?: boolean;
7152
+ /** Mouse influence radius */
7153
+ mouseRadius?: number;
7154
+ /** Spring preset */
7155
+ preset?: 'default' | 'gentle' | 'wobbly' | 'stiff' | 'slow' | 'molasses';
7156
+ /** Enable overshoot */
7157
+ overshoot?: boolean;
7158
+ /** Overshoot clamp */
7159
+ clamp?: boolean;
7160
+ /** Precision threshold */
7161
+ precision?: number;
7162
+ /** Enable 3D transform */
7163
+ transform3d?: boolean;
7164
+ /** Enable rotation */
7165
+ rotate?: boolean;
7166
+ /** Rotation multiplier */
7167
+ rotationMultiplier?: number;
7168
+ /** Enable scale */
7169
+ scale?: boolean;
7170
+ /** Scale range */
7171
+ scaleRange?: [number, number];
7172
+ /** Enable skew */
7173
+ skew?: boolean;
7174
+ /** Skew intensity */
7175
+ skewIntensity?: number;
7176
+ /** Enable trail effect */
7177
+ trail?: boolean;
7178
+ /** Trail count */
7179
+ trailCount?: number;
7180
+ /** Trail decay */
7181
+ trailDecay?: number;
7182
+ /** Enable bounce boundaries */
7183
+ boundaries?: boolean;
7184
+ /** Boundary box */
7185
+ boundaryBox?: {
7186
+ left?: number;
7187
+ right?: number;
7188
+ top?: number;
7189
+ bottom?: number;
7190
+ };
7191
+ /** Enable multiple springs */
7192
+ multiSpring?: boolean;
7193
+ /** Spring chain count */
7194
+ chainCount?: number;
7195
+ /** Chain delay */
7196
+ chainDelay?: number;
7197
+ /** Enable oscillation */
7198
+ oscillate?: boolean;
7199
+ /** Oscillation frequency */
7200
+ oscillationFrequency?: number;
7201
+ /** Oscillation amplitude */
7202
+ oscillationAmplitude?: number;
7203
+ /** Container class */
7204
+ containerClassName?: string;
7205
+ /** Spring class */
7206
+ springClassName?: string;
7207
+ /** Callback on motion start */
7208
+ onMotionStart?: () => void;
7209
+ /** Callback on motion complete */
7210
+ onMotionComplete?: () => void;
7211
+ /** Callback on spring update */
7212
+ onSpringUpdate?: (position: {
7213
+ x: number;
7214
+ y: number;
7215
+ }) => void;
7216
+ }
7217
+ declare const SpringPhysics: React__default.FC<SpringPhysicsProps>;
7218
+
7219
+ /**
7220
+ * ElasticAnimation Component
7221
+ *
7222
+ * Creates smooth elastic animations with customizable tension and friction
7223
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7224
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7225
+ *
7226
+ * @author MoonUI Team
7227
+ * @license MIT
7228
+ * @credits React Bits by David H
7229
+ */
7230
+ interface ElasticAnimationProps {
7231
+ /** Content to animate */
7232
+ children: React__default.ReactNode;
7233
+ /** Animation trigger */
7234
+ trigger?: 'hover' | 'click' | 'scroll' | 'auto' | 'continuous';
7235
+ /** Elasticity coefficient (0-1) */
7236
+ elasticity?: number;
7237
+ /** Damping factor */
7238
+ damping?: number;
7239
+ /** Animation duration in ms */
7240
+ duration?: number;
7241
+ /** Delay before animation starts */
7242
+ delay?: number;
7243
+ /** Animation direction */
7244
+ direction?: 'horizontal' | 'vertical' | 'both' | 'diagonal';
7245
+ /** Animation distance */
7246
+ distance?: number;
7247
+ /** Enable oscillation */
7248
+ oscillate?: boolean;
7249
+ /** Oscillation count */
7250
+ oscillationCount?: number;
7251
+ /** Enable rubber band effect */
7252
+ rubberBand?: boolean;
7253
+ /** Rubber band intensity */
7254
+ rubberBandIntensity?: number;
7255
+ /** Enable jello effect */
7256
+ jello?: boolean;
7257
+ /** Jello wobbles */
7258
+ jelloWobbles?: number;
7259
+ /** Enable morphing */
7260
+ morph?: boolean;
7261
+ /** Morph targets */
7262
+ morphTargets?: Array<{
7263
+ x: number;
7264
+ y: number;
7265
+ scale?: number;
7266
+ rotate?: number;
7267
+ }>;
7268
+ /** Enable squash and stretch */
7269
+ squashStretch?: boolean;
7270
+ /** Squash factor */
7271
+ squashFactor?: number;
7272
+ /** Enable anticipation */
7273
+ anticipation?: boolean;
7274
+ /** Anticipation distance */
7275
+ anticipationDistance?: number;
7276
+ /** Enable follow through */
7277
+ followThrough?: boolean;
7278
+ /** Follow through overshoot */
7279
+ followThroughOvershoot?: number;
7280
+ /** Enable secondary animation */
7281
+ secondary?: boolean;
7282
+ /** Secondary delay */
7283
+ secondaryDelay?: number;
7284
+ /** Enable arc motion */
7285
+ arcMotion?: boolean;
7286
+ /** Arc height */
7287
+ arcHeight?: number;
7288
+ /** Enable twist */
7289
+ twist?: boolean;
7290
+ /** Twist angle */
7291
+ twistAngle?: number;
7292
+ /** Enable pulse */
7293
+ pulse?: boolean;
7294
+ /** Pulse scale */
7295
+ pulseScale?: number;
7296
+ /** Enable shake */
7297
+ shake?: boolean;
7298
+ /** Shake intensity */
7299
+ shakeIntensity?: number;
7300
+ /** Easing function */
7301
+ easing?: 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'elastic' | 'bounce';
7302
+ /** Enable 3D transform */
7303
+ transform3d?: boolean;
7304
+ /** Perspective for 3D */
7305
+ perspective?: number;
7306
+ /** Container class */
7307
+ containerClassName?: string;
7308
+ /** Animation class */
7309
+ animationClassName?: string;
7310
+ /** Callback on animation start */
7311
+ onAnimationStart?: () => void;
7312
+ /** Callback on animation complete */
7313
+ onAnimationComplete?: () => void;
7314
+ }
7315
+ declare const ElasticAnimation: React__default.FC<ElasticAnimationProps>;
7316
+
7317
+ /**
7318
+ * PathAnimations Component
7319
+ *
7320
+ * Animates elements along custom SVG paths with various motion patterns
7321
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7322
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7323
+ *
7324
+ * @author MoonUI Team
7325
+ * @license MIT
7326
+ * @credits React Bits by David H
7327
+ */
7328
+ interface PathAnimationsProps {
7329
+ /** Content to animate along path */
7330
+ children: React__default.ReactNode;
7331
+ /** SVG path string or predefined path */
7332
+ path?: string | 'circle' | 'ellipse' | 'spiral' | 'infinity' | 'heart' | 'star' | 'wave' | 'zigzag';
7333
+ /** Animation duration in ms */
7334
+ duration?: number;
7335
+ /** Animation delay */
7336
+ delay?: number;
7337
+ /** Enable loop */
7338
+ loop?: boolean;
7339
+ /** Loop count (-1 for infinite) */
7340
+ loopCount?: number;
7341
+ /** Animation direction */
7342
+ direction?: 'normal' | 'reverse' | 'alternate';
7343
+ /** Easing function */
7344
+ easing?: 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'cubic-bezier';
7345
+ /** Custom cubic bezier values */
7346
+ cubicBezier?: [number, number, number, number];
7347
+ /** Auto rotate along path */
7348
+ autoRotate?: boolean;
7349
+ /** Rotation offset */
7350
+ rotationOffset?: number;
7351
+ /** Enable morphing between paths */
7352
+ morph?: boolean;
7353
+ /** Morph targets */
7354
+ morphPaths?: string[];
7355
+ /** Morph duration */
7356
+ morphDuration?: number;
7357
+ /** Path offset start (0-1) */
7358
+ offsetStart?: number;
7359
+ /** Path offset end (0-1) */
7360
+ offsetEnd?: number;
7361
+ /** Enable trail effect */
7362
+ trail?: boolean;
7363
+ /** Trail count */
7364
+ trailCount?: number;
7365
+ /** Trail fade */
7366
+ trailFade?: number;
7367
+ /** Enable glow along path */
7368
+ glow?: boolean;
7369
+ /** Glow color */
7370
+ glowColor?: string;
7371
+ /** Glow intensity */
7372
+ glowIntensity?: number;
7373
+ /** Enable particle effects */
7374
+ particles?: boolean;
7375
+ /** Particle count */
7376
+ particleCount?: number;
7377
+ /** Particle size */
7378
+ particleSize?: number;
7379
+ /** Show path outline */
7380
+ showPath?: boolean;
7381
+ /** Path stroke color */
7382
+ pathStrokeColor?: string;
7383
+ /** Path stroke width */
7384
+ pathStrokeWidth?: number;
7385
+ /** Path dash array */
7386
+ pathDashArray?: string;
7387
+ /** Enable scale animation */
7388
+ scaleAnimation?: boolean;
7389
+ /** Scale range */
7390
+ scaleRange?: [number, number];
7391
+ /** Enable opacity animation */
7392
+ opacityAnimation?: boolean;
7393
+ /** Opacity range */
7394
+ opacityRange?: [number, number];
7395
+ /** Animation trigger */
7396
+ trigger?: 'auto' | 'hover' | 'click' | 'scroll' | 'manual';
7397
+ /** Container class */
7398
+ containerClassName?: string;
7399
+ /** Path class */
7400
+ pathClassName?: string;
7401
+ /** Callback on animation start */
7402
+ onAnimationStart?: () => void;
7403
+ /** Callback on animation complete */
7404
+ onAnimationComplete?: () => void;
7405
+ /** Callback on position update */
7406
+ onPositionUpdate?: (position: {
7407
+ x: number;
7408
+ y: number;
7409
+ progress: number;
7410
+ }) => void;
7411
+ }
7412
+ declare const PathAnimations: React__default.FC<PathAnimationsProps>;
7413
+
7414
+ /**
7415
+ * SVGAnimations Component
7416
+ *
7417
+ * Advanced SVG animations including morphing, drawing, and transformations
7418
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7419
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7420
+ *
7421
+ * @author MoonUI Team
7422
+ * @license MIT
7423
+ * @credits React Bits by David H
7424
+ */
7425
+ interface SVGAnimationsProps {
7426
+ /** SVG content or children */
7427
+ children?: React__default.ReactNode;
7428
+ /** Animation type */
7429
+ type?: 'draw' | 'morph' | 'fill' | 'stroke' | 'transform' | 'path' | 'mask' | 'filter';
7430
+ /** Duration in ms */
7431
+ duration?: number;
7432
+ /** Delay before start */
7433
+ delay?: number;
7434
+ /** Easing function */
7435
+ easing?: 'linear' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'cubic-bezier';
7436
+ /** Custom cubic bezier values */
7437
+ cubicBezier?: [number, number, number, number];
7438
+ /** Enable loop */
7439
+ loop?: boolean;
7440
+ /** Loop count (-1 for infinite) */
7441
+ loopCount?: number;
7442
+ /** Auto play */
7443
+ autoPlay?: boolean;
7444
+ /** Trigger */
7445
+ trigger?: 'auto' | 'hover' | 'click' | 'scroll' | 'manual';
7446
+ /** Draw animation options */
7447
+ drawOptions?: {
7448
+ pathOrder?: 'sequential' | 'parallel' | 'random';
7449
+ fillAfterDraw?: boolean;
7450
+ fadeIn?: boolean;
7451
+ };
7452
+ /** Morph animation options */
7453
+ morphOptions?: {
7454
+ morphTargets?: string[];
7455
+ morphEasing?: 'linear' | 'elastic' | 'bounce';
7456
+ preserveAspectRatio?: boolean;
7457
+ };
7458
+ /** Fill animation options */
7459
+ fillOptions?: {
7460
+ fillDirection?: 'left' | 'right' | 'top' | 'bottom' | 'center' | 'radial';
7461
+ fillColor?: string;
7462
+ gradientFill?: boolean;
7463
+ gradientColors?: string[];
7464
+ };
7465
+ /** Stroke animation options */
7466
+ strokeOptions?: {
7467
+ strokeDasharray?: string;
7468
+ strokeDashoffset?: number;
7469
+ strokeWidth?: number;
7470
+ strokeColor?: string;
7471
+ animateWidth?: boolean;
7472
+ };
7473
+ /** Transform animation options */
7474
+ transformOptions?: {
7475
+ scale?: [number, number];
7476
+ rotate?: number;
7477
+ translate?: [number, number];
7478
+ skew?: [number, number];
7479
+ transformOrigin?: string;
7480
+ };
7481
+ /** Path animation options */
7482
+ pathOptions?: {
7483
+ pathLength?: number;
7484
+ pathOffset?: number;
7485
+ pathDirection?: 'normal' | 'reverse';
7486
+ };
7487
+ /** Mask animation options */
7488
+ maskOptions?: {
7489
+ maskType?: 'reveal' | 'hide' | 'wipe';
7490
+ maskDirection?: 'left' | 'right' | 'top' | 'bottom' | 'radial';
7491
+ maskShape?: 'circle' | 'rect' | 'polygon';
7492
+ };
7493
+ /** Filter animation options */
7494
+ filterOptions?: {
7495
+ blur?: [number, number];
7496
+ brightness?: [number, number];
7497
+ contrast?: [number, number];
7498
+ saturate?: [number, number];
7499
+ hueRotate?: [number, number];
7500
+ };
7501
+ /** Enable glow effect */
7502
+ glow?: boolean;
7503
+ /** Glow color */
7504
+ glowColor?: string;
7505
+ /** Glow intensity */
7506
+ glowIntensity?: number;
7507
+ /** Enable shadow */
7508
+ shadow?: boolean;
7509
+ /** Shadow color */
7510
+ shadowColor?: string;
7511
+ /** Shadow blur */
7512
+ shadowBlur?: number;
7513
+ /** Container class */
7514
+ containerClassName?: string;
7515
+ /** SVG class */
7516
+ svgClassName?: string;
7517
+ /** Callback on animation start */
7518
+ onAnimationStart?: () => void;
7519
+ /** Callback on animation complete */
7520
+ onAnimationComplete?: () => void;
7521
+ /** Callback on frame update */
7522
+ onFrame?: (progress: number) => void;
7523
+ }
7524
+ declare const SVGAnimations: React__default.FC<SVGAnimationsProps>;
7525
+
7526
+ /**
7527
+ * FadeTransitions Component
7528
+ *
7529
+ * Advanced fade transitions with multiple styles and timing functions
7530
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7531
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7532
+ *
7533
+ * @author MoonUI Team
7534
+ * @license MIT
7535
+ * @credits React Bits by David H
7536
+ */
7537
+ interface FadeTransitionsProps {
7538
+ /** Content to transition */
7539
+ children: React__default.ReactNode;
7540
+ /** Transition type */
7541
+ type?: 'fade' | 'crossfade' | 'dissolve' | 'blur-fade' | 'zoom-fade' | 'slide-fade' | 'rotate-fade' | 'scale-fade';
7542
+ /** Fade direction for slide-fade */
7543
+ direction?: 'up' | 'down' | 'left' | 'right' | 'diagonal';
7544
+ /** Duration in ms */
7545
+ duration?: number;
7546
+ /** Delay before transition */
7547
+ delay?: number;
7548
+ /** Stagger delay for multiple children */
7549
+ stagger?: number;
7550
+ /** Enable stagger effect */
7551
+ staggered?: boolean;
7552
+ /** Easing function */
7553
+ easing?: 'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'spring' | 'bounce';
7554
+ /** Trigger type */
7555
+ trigger?: 'auto' | 'hover' | 'click' | 'scroll' | 'manual';
7556
+ /** Threshold for scroll trigger (0-1) */
7557
+ threshold?: number;
7558
+ /** Enable cascade effect */
7559
+ cascade?: boolean;
7560
+ /** Cascade direction */
7561
+ cascadeDirection?: 'forward' | 'reverse' | 'random';
7562
+ /** Enable parallax effect */
7563
+ parallax?: boolean;
7564
+ /** Parallax offset */
7565
+ parallaxOffset?: number;
7566
+ /** Blur amount for blur-fade */
7567
+ blurAmount?: number;
7568
+ /** Zoom scale for zoom-fade */
7569
+ zoomScale?: number;
7570
+ /** Rotation degrees for rotate-fade */
7571
+ rotationDegrees?: number;
7572
+ /** Scale amount for scale-fade */
7573
+ scaleAmount?: number;
7574
+ /** Enable glow during transition */
7575
+ glow?: boolean;
7576
+ /** Glow color */
7577
+ glowColor?: string;
7578
+ /** Glow intensity */
7579
+ glowIntensity?: number;
7580
+ /** Enable mask transition */
7581
+ mask?: boolean;
7582
+ /** Mask shape */
7583
+ maskShape?: 'circle' | 'diamond' | 'hexagon' | 'star';
7584
+ /** Enable split text animation */
7585
+ splitText?: boolean;
7586
+ /** Split by */
7587
+ splitBy?: 'character' | 'word' | 'line';
7588
+ /** Preserve space in split */
7589
+ preserveSpace?: boolean;
7590
+ /** Enable reverse on exit */
7591
+ reverseOnExit?: boolean;
7592
+ /** Enable loop */
7593
+ loop?: boolean;
7594
+ /** Loop count (-1 for infinite) */
7595
+ loopCount?: number;
7596
+ /** Container class */
7597
+ containerClassName?: string;
7598
+ /** Item class for children */
7599
+ itemClassName?: string;
7600
+ /** Visible state (for manual control) */
7601
+ visible?: boolean;
7602
+ /** Callback on transition start */
7603
+ onTransitionStart?: () => void;
7604
+ /** Callback on transition complete */
7605
+ onTransitionComplete?: () => void;
7606
+ /** Callback on visibility change */
7607
+ onVisibilityChange?: (visible: boolean) => void;
7608
+ }
7609
+ declare const FadeTransitions: React__default.FC<FadeTransitionsProps>;
7610
+
7611
+ /**
7612
+ * TouchGestures Component
7613
+ *
7614
+ * Advanced touch gesture recognition and handling for mobile interactions
7615
+ * Derived from React Bits (https://github.com/DavidHDev/react-bits)
7616
+ * Adapted for MoonUI Pro with TypeScript and enhanced features
7617
+ *
7618
+ * @author MoonUI Team
7619
+ * @license MIT
7620
+ * @credits React Bits by David H
7621
+ */
7622
+ interface TouchGesturesProps {
7623
+ /** Content to apply gestures to */
7624
+ children: React__default.ReactNode;
7625
+ /** Enable swipe gestures */
7626
+ swipe?: boolean;
7627
+ /** Swipe threshold in pixels */
7628
+ swipeThreshold?: number;
7629
+ /** Swipe velocity threshold */
7630
+ swipeVelocity?: number;
7631
+ /** Enable pinch gestures */
7632
+ pinch?: boolean;
7633
+ /** Pinch scale limits */
7634
+ pinchScaleLimits?: [number, number];
7635
+ /** Enable rotate gestures */
7636
+ rotate?: boolean;
7637
+ /** Rotation snap angles */
7638
+ rotationSnap?: number;
7639
+ /** Enable tap gestures */
7640
+ tap?: boolean;
7641
+ /** Double tap delay */
7642
+ doubleTapDelay?: number;
7643
+ /** Long press duration */
7644
+ longPressDuration?: number;
7645
+ /** Enable pan gestures */
7646
+ pan?: boolean;
7647
+ /** Pan boundaries */
7648
+ panBoundaries?: {
7649
+ left?: number;
7650
+ right?: number;
7651
+ top?: number;
7652
+ bottom?: number;
7653
+ };
7654
+ /** Enable momentum scrolling */
7655
+ momentum?: boolean;
7656
+ /** Momentum friction */
7657
+ momentumFriction?: number;
7658
+ /** Enable elastic boundaries */
7659
+ elastic?: boolean;
7660
+ /** Elastic strength */
7661
+ elasticStrength?: number;
7662
+ /** Enable gesture preview */
7663
+ preview?: boolean;
7664
+ /** Preview opacity */
7665
+ previewOpacity?: number;
7666
+ /** Enable haptic feedback */
7667
+ haptic?: boolean;
7668
+ /** Haptic intensity */
7669
+ hapticIntensity?: 'light' | 'medium' | 'heavy';
7670
+ /** Gesture indicators */
7671
+ indicators?: boolean;
7672
+ /** Indicator color */
7673
+ indicatorColor?: string;
7674
+ /** Enable multi-touch */
7675
+ multiTouch?: boolean;
7676
+ /** Max touch points */
7677
+ maxTouchPoints?: number;
7678
+ /** Container class */
7679
+ containerClassName?: string;
7680
+ /** Content class */
7681
+ contentClassName?: string;
7682
+ /** Callbacks */
7683
+ onSwipe?: (direction: 'left' | 'right' | 'up' | 'down', velocity: number) => void;
7684
+ onPinch?: (scale: number) => void;
7685
+ onRotate?: (rotation: number) => void;
7686
+ onTap?: (position: {
7687
+ x: number;
7688
+ y: number;
7689
+ }) => void;
7690
+ onDoubleTap?: (position: {
7691
+ x: number;
7692
+ y: number;
7693
+ }) => void;
7694
+ onLongPress?: (position: {
7695
+ x: number;
7696
+ y: number;
7697
+ }) => void;
7698
+ onPan?: (delta: {
7699
+ x: number;
7700
+ y: number;
7701
+ }) => void;
7702
+ onGestureStart?: () => void;
7703
+ onGestureEnd?: () => void;
7704
+ }
7705
+ declare const TouchGestures: React__default.FC<TouchGesturesProps>;
7706
+
7707
+ /**
7708
+ * SwipeActions Component
7709
+ *
7710
+ * Smooth swipe gesture handling for interactive actions like delete, archive, etc.
7711
+ * Based on React Bits by Pheralb (https://github.com/pheralb/react-bits)
7712
+ *
7713
+ * Features:
7714
+ * - Multi-directional swipe support (left, right, up, down)
7715
+ * - Configurable action thresholds and sensitivity
7716
+ * - Spring animations with customizable physics
7717
+ * - Multiple action definitions per direction
7718
+ * - Custom action icons and styling
7719
+ * - Haptic feedback integration
7720
+ * - Momentum-based gesture completion
7721
+ * - Auto-reset functionality
7722
+ * - Accessibility support with keyboard navigation
7723
+ * - TypeScript support with comprehensive interfaces
7724
+ */
7725
+
7726
+ type SwipeDirection = "left" | "right" | "up" | "down";
7727
+ type AnimationType$1 = "spring" | "ease" | "linear" | "bounce";
7728
+ interface SwipeAction {
7729
+ id: string;
7730
+ label: string;
7731
+ icon?: React__default.ReactNode;
7732
+ color: string;
7733
+ backgroundColor: string;
7734
+ threshold: number;
7735
+ onAction: () => void | Promise<void>;
7736
+ haptic?: boolean;
7737
+ confirmRequired?: boolean;
7738
+ confirmText?: string;
7739
+ }
7740
+ interface SwipeActionsProps {
7741
+ children: React__default.ReactNode;
7742
+ className?: string;
7743
+ leftActions?: SwipeAction[];
7744
+ rightActions?: SwipeAction[];
7745
+ upActions?: SwipeAction[];
7746
+ downActions?: SwipeAction[];
7747
+ sensitivity?: number;
7748
+ threshold?: number;
7749
+ maxDistance?: number;
7750
+ enabledDirections?: SwipeDirection[];
7751
+ animationType?: AnimationType$1;
7752
+ springConfig?: {
7753
+ tension: number;
7754
+ friction: number;
7755
+ mass: number;
7756
+ };
7757
+ duration?: number;
7758
+ showProgress?: boolean;
7759
+ progressColor?: string;
7760
+ actionSpacing?: number;
7761
+ actionSize?: number;
7762
+ momentum?: boolean;
7763
+ autoReset?: boolean;
7764
+ resetDelay?: number;
7765
+ preventScroll?: boolean;
7766
+ requireConfirm?: boolean;
7767
+ onSwipeStart?: (direction: SwipeDirection) => void;
7768
+ onSwipeProgress?: (direction: SwipeDirection, progress: number) => void;
7769
+ onSwipeEnd?: (direction: SwipeDirection, completed: boolean) => void;
7770
+ onActionExecute?: (action: SwipeAction) => void;
7771
+ ariaLabel?: string;
7772
+ disabled?: boolean;
7773
+ }
7774
+ declare const SwipeActions: React__default.FC<SwipeActionsProps>;
7775
+
7776
+ /**
7777
+ * ClickAnimations Component
7778
+ *
7779
+ * Advanced click animation effects with ripple, pulse, and transform animations.
7780
+ * Based on React Bits by Pheralb (https://github.com/pheralb/react-bits)
7781
+ *
7782
+ * Features:
7783
+ * - Multiple animation types (ripple, pulse, scale, bounce, shake)
7784
+ * - Customizable animation parameters and timing
7785
+ * - Multiple simultaneous animation layers
7786
+ * - Color and intensity customization
7787
+ * - Click position tracking for targeted animations
7788
+ * - Gesture recognition (single, double, long press)
7789
+ * - Animation chaining and sequencing
7790
+ * - Performance optimized with RAF
7791
+ * - Accessibility support with reduced motion
7792
+ * - TypeScript support with comprehensive interfaces
7793
+ */
7794
+
7795
+ type AnimationType = "ripple" | "pulse" | "scale" | "bounce" | "shake" | "glow" | "wave";
7796
+ type ClickType = "single" | "double" | "long";
7797
+ type EasingType$1 = "ease" | "ease-in" | "ease-out" | "ease-in-out" | "bounce" | "elastic";
7798
+ interface AnimationConfig {
7799
+ type: AnimationType;
7800
+ duration: number;
7801
+ delay: number;
7802
+ intensity: number;
7803
+ color?: string;
7804
+ easing: EasingType$1;
7805
+ repeat?: number;
7806
+ direction?: "normal" | "reverse" | "alternate";
7807
+ }
7808
+ interface RippleConfig {
7809
+ size: number;
7810
+ opacity: number;
7811
+ duration: number;
7812
+ color: string;
7813
+ blur?: number;
7814
+ }
7815
+ interface ClickAnimationsProps {
7816
+ children: React__default.ReactNode;
7817
+ className?: string;
7818
+ animations?: AnimationConfig[];
7819
+ defaultAnimation?: AnimationType;
7820
+ intensity?: number;
7821
+ duration?: number;
7822
+ easing?: EasingType$1;
7823
+ enabledClicks?: ClickType[];
7824
+ doubleClickDelay?: number;
7825
+ longPressDelay?: number;
7826
+ clickThreshold?: number;
7827
+ rippleEnabled?: boolean;
7828
+ rippleConfig?: Partial<RippleConfig>;
7829
+ maxRipples?: number;
7830
+ rippleFade?: boolean;
7831
+ color?: string;
7832
+ glowColor?: string;
7833
+ glowIntensity?: number;
7834
+ shadowEffect?: boolean;
7835
+ transformOrigin?: string;
7836
+ chainAnimations?: boolean;
7837
+ animationLayers?: number;
7838
+ performanceMode?: boolean;
7839
+ preventPropagation?: boolean;
7840
+ respectReducedMotion?: boolean;
7841
+ gestureThreshold?: number;
7842
+ velocityThreshold?: number;
7843
+ pressureSupport?: boolean;
7844
+ onAnimationStart?: (type: AnimationType, position: {
7845
+ x: number;
7846
+ y: number;
7847
+ }) => void;
7848
+ onAnimationComplete?: (type: AnimationType) => void;
7849
+ onClickDetected?: (type: ClickType, event: React__default.MouseEvent) => void;
7850
+ onGestureRecognized?: (gesture: string, data: any) => void;
7851
+ ariaLabel?: string;
7852
+ disabled?: boolean;
7853
+ }
7854
+ declare const ClickAnimations: React__default.FC<ClickAnimationsProps>;
7855
+
7856
+ /**
7857
+ * FocusTransitions Component
7858
+ *
7859
+ * Advanced focus state transitions with smooth animations and accessibility support.
7860
+ * Based on React Bits by Pheralb (https://github.com/pheralb/react-bits)
7861
+ *
7862
+ * Features:
7863
+ * - Multiple focus animation types (glow, scale, border, shadow)
7864
+ * - Smooth enter/exit transitions with custom timing
7865
+ * - Focus ring customization and positioning
7866
+ * - Keyboard navigation enhancements
7867
+ * - Focus trap functionality for modals
7868
+ * - Multi-element focus orchestration
7869
+ * - Accessibility compliance (WCAG 2.1)
7870
+ * - Custom focus indicators and styles
7871
+ * - Focus state persistence and restoration
7872
+ * - Performance optimized animations
7873
+ * - TypeScript support with comprehensive interfaces
7874
+ */
7875
+
7876
+ type FocusAnimationType = "glow" | "scale" | "border" | "shadow" | "slide" | "fade" | "pulse" | "outline";
7877
+ type FocusDirection = "in" | "out" | "within";
7878
+ type EasingType = "ease" | "ease-in" | "ease-out" | "ease-in-out" | "bounce" | "elastic";
7879
+ interface FocusConfig {
7880
+ type: FocusAnimationType;
7881
+ duration: number;
7882
+ delay: number;
7883
+ easing: EasingType;
7884
+ intensity: number;
7885
+ color?: string;
7886
+ offset?: number;
7887
+ blur?: number;
7888
+ }
7889
+ interface FocusState {
7890
+ isFocused: boolean;
7891
+ isKeyboardFocus: boolean;
7892
+ isWithin: boolean;
7893
+ direction: FocusDirection;
7894
+ timestamp: number;
7895
+ }
7896
+ interface FocusTransitionsProps {
7897
+ children: React__default.ReactNode;
7898
+ className?: string;
7899
+ animations?: FocusConfig[];
7900
+ defaultAnimation?: FocusAnimationType;
7901
+ duration?: number;
7902
+ easing?: EasingType;
7903
+ intensity?: number;
7904
+ focusColor?: string;
7905
+ focusOffset?: number;
7906
+ focusBlur?: number;
7907
+ focusThickness?: number;
7908
+ focusRadius?: number;
7909
+ keyboardOnly?: boolean;
7910
+ trapFocus?: boolean;
7911
+ restoreFocus?: boolean;
7912
+ autoFocus?: boolean;
7913
+ focusDelay?: number;
7914
+ showFocusRing?: boolean;
7915
+ customFocusRing?: boolean;
7916
+ focusRingPosition?: "inside" | "outside" | "center";
7917
+ glowEffect?: boolean;
7918
+ shadowEffect?: boolean;
7919
+ persistFocus?: boolean;
7920
+ focusGroup?: string;
7921
+ focusOrder?: number;
7922
+ respectReducedMotion?: boolean;
7923
+ performanceMode?: boolean;
7924
+ enterAnimation?: Partial<FocusConfig>;
7925
+ exitAnimation?: Partial<FocusConfig>;
7926
+ withinAnimation?: Partial<FocusConfig>;
7927
+ onFocusEnter?: (event: React__default.FocusEvent, state: FocusState) => void;
7928
+ onFocusExit?: (event: React__default.FocusEvent, state: FocusState) => void;
7929
+ onFocusWithin?: (hasWithinFocus: boolean) => void;
7930
+ onAnimationStart?: (type: FocusAnimationType, direction: FocusDirection) => void;
7931
+ onAnimationComplete?: (type: FocusAnimationType, direction: FocusDirection) => void;
7932
+ ariaLabel?: string;
7933
+ role?: string;
7934
+ tabIndex?: number;
7935
+ disabled?: boolean;
7936
+ }
7937
+ interface FocusTransitionsRef {
7938
+ focus: () => void;
7939
+ blur: () => void;
7940
+ getFocusState: () => FocusState;
7941
+ getElement: () => HTMLElement | null;
7942
+ }
7943
+ declare const FocusTransitions: React__default.ForwardRefExoticComponent<FocusTransitionsProps & React__default.RefAttributes<FocusTransitionsRef>>;
7944
+
7945
+ interface DocsConfig {
7946
+ meta: {
7947
+ name: string;
7948
+ type: "free" | "pro" | "mixed";
7949
+ description: string;
7950
+ category: string;
7951
+ badge?: string;
7952
+ };
7953
+ installation: {
7954
+ cli: string;
7955
+ npm: string;
7956
+ imports: string[];
7957
+ dependencies?: string[];
7958
+ manualSetup?: string;
7959
+ };
7960
+ usage: {
7961
+ basic: {
7962
+ code: string;
7963
+ component: React__default.ReactElement;
7964
+ fullWidth?: boolean;
7965
+ };
7966
+ pro?: {
7967
+ code: string;
7968
+ component: React__default.ReactElement;
7969
+ fullWidth?: boolean;
7970
+ };
7971
+ };
7972
+ examples: {
7973
+ free: Array<{
7974
+ title: string;
7975
+ description?: string;
7976
+ code?: string;
7977
+ component: React__default.ReactElement;
7978
+ fullWidth?: boolean;
7979
+ }>;
7980
+ pro: Array<{
7981
+ title: string;
7982
+ description?: string;
7983
+ code?: string;
7984
+ component: React__default.ReactElement;
7985
+ fullWidth?: boolean;
7986
+ }>;
7987
+ };
7988
+ api: {
7989
+ components: Array<{
7990
+ name: string;
7991
+ description: string;
7992
+ props: Array<{
7993
+ name: string;
7994
+ type: string;
7995
+ default: string;
7996
+ description: string;
7997
+ }>;
7998
+ }>;
7999
+ accessibility: {
8000
+ keyboard: Array<{
8001
+ keys: string;
8002
+ description: string;
8003
+ }>;
8004
+ aria: string[];
8005
+ };
8006
+ bestPractices: Array<{
8007
+ title: string;
8008
+ description: string;
8009
+ tips: string[];
8010
+ variant: "success" | "info" | "warning";
8011
+ }>;
8012
+ };
8013
+ proFeatures?: Array<{
8014
+ icon: React__default.ReactElement;
8015
+ title: string;
8016
+ description: string;
8017
+ }>;
8018
+ proBannerFeatures?: string[];
8019
+ seo: {
8020
+ title: string;
8021
+ description: string;
8022
+ keywords: string[];
8023
+ };
8024
+ }
8025
+
8026
+ declare const dotPatternConfig: DocsConfig;
8027
+
8028
+ declare function DotPatternDocsPage(): react_jsx_runtime.JSX.Element;
8029
+
8030
+ declare const gridDistortionConfig: DocsConfig;
8031
+
8032
+ declare function GridDistortionDocsPage(): react_jsx_runtime.JSX.Element;
8033
+
8034
+ declare const wavesConfig: DocsConfig;
8035
+
8036
+ declare const gradientFlowConfig: DocsConfig;
8037
+
8038
+ declare const meshGradientConfig: DocsConfig;
8039
+
8040
+ declare const liquidBackgroundConfig: DocsConfig;
8041
+
8042
+ declare const geometricPatternsConfig: DocsConfig;
8043
+
8044
+ interface DocsPageTemplateProps {
8045
+ config: DocsConfig;
8046
+ }
8047
+ declare function DocsPageTemplate({ config }: DocsPageTemplateProps): react_jsx_runtime.JSX.Element;
8048
+
8049
+ export { AIProvider, AIProviderConfig, AIResponse, MoonUIAccordionPro as Accordion, MoonUIAccordionContentPro as AccordionContent, MoonUIAccordionItemPro as AccordionItem, AccordionSize, MoonUIAccordionTriggerPro as AccordionTrigger, AccordionVariant, ActivityItem, Calendar as AdvancedCalendar, AdvancedChart, AdvancedChartProps, AdvancedFormField, AdvancedForms, AdvancedFormsProps, MoonUIAlertPro as Alert, MoonUIAlertDescriptionPro as AlertDescription, MoonUIAlertTitlePro as AlertTitle, AnimatedNumber, AnimatedNumberProps, AnimationMode$1 as AnimationMode, MoonUIAspectRatioPro as AspectRatio, AuroraBackground, AuroraBackgroundProps, MoonUIAvatarPro$1 as Avatar, MoonUIAvatarFallbackPro as AvatarFallback, MoonUIAvatarImagePro as AvatarImage, MoonUIBadgePro as Badge, BadgeVariant, BentoGrid, BentoGridItem, BentoGridItemProps, BentoGridProps, BlurFade, BlurFadeProps, BounceEffect, BounceEffectProps, MoonUIBreadcrumbPro as Breadcrumb, MoonUIBreadcrumbEllipsisPro as BreadcrumbEllipsis, MoonUIBreadcrumbItemPro as BreadcrumbItem, MoonUIBreadcrumbLinkPro as BreadcrumbLink, MoonUIBreadcrumbListPro as BreadcrumbList, MoonUIBreadcrumbPagePro as BreadcrumbPage, MoonUIBreadcrumbSeparatorPro as BreadcrumbSeparator, BubbleBackground, BubbleBackgroundProps, BulkAction, MoonUIButtonPro as Button, Calendar$1 as Calendar, CalendarEvent, Calendar as CalendarPro, MoonUICardPro as Card, MoonUICardContentPro as CardContent, MoonUICardDescriptionPro as CardDescription, MoonUICardFooterPro as CardFooter, MoonUICardHeaderPro as CardHeader, MoonUICardTitlePro as CardTitle, ChartData, ChartDataPoint$1 as ChartDataPoint, ChartSeries$1 as ChartSeries, ChartType, ChartWidget, ChartWidgetProps, MoonUICheckboxPro as Checkbox, ClaudeProvider, ClickAnimations, ClickAnimationsProps, MoonUICollapsiblePro as Collapsible, AnimationMode as CollapsibleAnimationMode, MoonUICollapsibleContentPro as CollapsibleContent, CollapsibleSize, MoonUICollapsibleTriggerPro as CollapsibleTrigger, CollapsibleVariant, MoonUIColorPickerPro as ColorPicker, MoonUICommandPro as Command, MoonUICommandDialogPro as CommandDialog, MoonUICommandEmptyPro as CommandEmpty, MoonUICommandGroupPro as CommandGroup, MoonUICommandInputPro as CommandInput, MoonUICommandItemPro as CommandItem, MoonUICommandListPro as CommandList, MoonUICommandSeparatorPro as CommandSeparator, MoonUICommandShortcutPro as CommandShortcut, ComparisonData, Confetti, ConfettiButton, ConfettiButtonProps, ConfettiProps, ConnectorRenderer, CreditCardInputProps, CursorTrail, CursorTrailProps, Dashboard, DashboardWidget, DataTable, DataTableProps, MoonUIDialogPro as Dialog, MoonUIDialogClosePro as DialogClose, MoonUIDialogContentPro as DialogContent, MoonUIDialogDescriptionPro as DialogDescription, MoonUIDialogFooterPro as DialogFooter, MoonUIDialogHeaderPro as DialogHeader, MoonUIDialogTitlePro as DialogTitle, MoonUIDialogTriggerPro as DialogTrigger, DockItem, DocsConfig, DocsPageTemplate, DocsProProvider, DotPattern, DotPatternDocsPage, DotPatternProps, DraggableList, DraggableListProps, MoonUIDropdownMenuPro as DropdownMenu, MoonUIDropdownMenuCheckboxItemPro as DropdownMenuCheckboxItem, MoonUIDropdownMenuContentPro as DropdownMenuContent, MoonUIDropdownMenuGroupPro as DropdownMenuGroup, MoonUIDropdownMenuItemPro as DropdownMenuItem, MoonUIDropdownMenuLabelPro as DropdownMenuLabel, MoonUIDropdownMenuPortalPro as DropdownMenuPortal, MoonUIDropdownMenuRadioGroupPro as DropdownMenuRadioGroup, MoonUIDropdownMenuRadioItemPro as DropdownMenuRadioItem, MoonUIDropdownMenuSeparatorPro as DropdownMenuSeparator, MoonUIDropdownMenuShortcutPro as DropdownMenuShortcut, MoonUIDropdownMenuSubPro as DropdownMenuSub, MoonUIDropdownMenuSubContentPro as DropdownMenuSubContent, MoonUIDropdownMenuSubTriggerPro as DropdownMenuSubTrigger, MoonUIDropdownMenuTriggerPro as DropdownMenuTrigger, EditorAIConfig, ElasticAnimation, ElasticAnimationProps, ErrorBoundary, ErrorBoundaryProps, ErrorFallbackProps, EventRenderer, ExportFormat, FadeTransitions, FadeTransitionsProps, FileUploadItem, FileUploadProProps, FilterCondition, FilterOperator, FlipText, FlipTextProps, FloatingActionButton, FloatingActionButtonProps, FloatingDock, FloatingDockProps, FloatingElements, FloatingElementsProps, FocusTransitions, FocusTransitionsProps, FocusTransitionsRef, FormWizard, FormWizardNavigation, FormWizardProgress, FormWizardProps, FormWizardStep, FunnelData, FunnelStage, FunnelWidget, FunnelWidgetProps, GalleryCategory, MoonUIGalleryItemPro as GalleryItem, GallerySortOption, GaugeData, GaugeWidget, GaugeWidgetProps, GeminiProvider, GeometricPatterns, GeometricPatternsProps, GestureDrawer, GestureDrawerProps, GitHubRepository, GitHubStars, GitHubStarsProps, GlitchBackground, GlitchBackgroundProps, GlitchText, GlitchTextProps, GlowCard, GlowCardProps, GlowEffect, GlowEffectProps, GradientFlow, GradientFlowProps, GradientText, GradientTextProps, GridDistortion, GridDistortionDocsPage, GridDistortionProps, GridPattern, GridPatternProps, HealthCheck, HealthCheckEndpoint, HealthCheckProps, HealthCheckResult, HoverCard, HoverCard3D, HoverCard3DProps, HoverCardContent, HoverCardTrigger, IconRenderer, MoonUIInputPro as Input, ItemHeightInfo, KPIData, KPIWidget, KPIWidgetProps, Kanban, KanbanAssignee, KanbanCard, KanbanColumn, KanbanLabel, KanbanProps, LANGUAGE_COLORS, MoonUILabelPro as Label, LazyComponent, LazyImage, LazyImageProps, LazyList, LazyListProps, LightboxContent, LightboxContentProps, LightboxProvider, LightboxTrigger, LiquidBackground, LiquidBackgroundProps, MagneticButton, MagneticButtonProps, MagneticElements, MagneticElementsProps, Marquee, MarqueeProps, MatrixRain, MatrixRainProps, MoonUIMediaGalleryPro as MediaGallery, MediaItem, MemoryAnalytics, MemoryAnalyticsProps, MemoryConfig, MemoryEfficientData, MemoryEfficientDataProps, MemoryPerformanceMetrics, MemoryStats, MeshGradient, MeshGradientProps, Meteors, MeteorsProps, MetricData, MilestoneEvent, MinimalModeConfig, MoonUIAccordionContentPro, MoonUIAccordionContentProProps, MoonUIAccordionItemPro, MoonUIAccordionItemProProps, MoonUIAccordionPro, MoonUIAccordionProBaseProps, MoonUIAccordionProMultipleProps, MoonUIAccordionProProps, MoonUIAccordionProSingleProps, MoonUIAccordionTriggerPro, MoonUIAccordionTriggerProProps, MoonUIAdvancedChartPro, MoonUIAlertDescriptionPro, MoonUIAlertPro, MoonUIAlertTitlePro, MoonUIAnimatedButtonPro, MoonUIAnimatedButtonProProps, MoonUIAnimatedListPro, MoonUIAnimatedListProProps, MoonUIAspectRatioPro, MoonUIAsyncAvatarPro, MoonUIAsyncAvatarProProps, MoonUIAvatarFallbackPro, MoonUIAvatarGroupPro, MoonUIAvatarGroupProProps, MoonUIAvatarImagePro, MoonUIAvatarPro, MoonUIAvatarProProps, MoonUIBadgePro, MoonUIBreadcrumbEllipsisPro, MoonUIBreadcrumbItemPro, MoonUIBreadcrumbLinkPro, MoonUIBreadcrumbListPro, MoonUIBreadcrumbPagePro, MoonUIBreadcrumbPro, MoonUIBreadcrumbSeparatorPro, MoonUIButtonPro, MoonUICache, Calendar as MoonUICalendarPro, MoonUICardContentPro, MoonUICardDescriptionPro, MoonUICardFooterPro, MoonUICardHeaderPro, MoonUICardPro, MoonUICardTitlePro, ChartDataPoint as MoonUIChartDataPoint, ChartSeries as MoonUIChartSeries, ChartWidget as MoonUIChartWidget, ChartWidgetProps as MoonUIChartWidgetProps, MoonUICheckboxPro, MoonUICollapsibleContentPro, MoonUICollapsibleContentProProps, MoonUICollapsiblePro, MoonUICollapsibleProProps, MoonUICollapsibleTriggerPro, MoonUICollapsibleTriggerProProps, MoonUIColorPickerPro, MoonUICommandDialogPro, MoonUICommandEmptyPro, MoonUICommandGroupPro, MoonUICommandInputPro, MoonUICommandItemPro, MoonUICommandListPro, MoonUICommandPro, MoonUICommandSeparatorPro, MoonUICommandShortcutPro, MoonUICreditCardInputPro, Dashboard as MoonUIDashboardPro, MoonUIDashboardProProps, MoonUIDataTable, DataTable as MoonUIDataTablePro, MoonUIDataTableProProps, MoonUIDataTableProps, MoonUIDialogClosePro, MoonUIDialogContentPro, MoonUIDialogDescriptionPro, MoonUIDialogFooterPro, MoonUIDialogHeaderPro, MoonUIDialogPro, MoonUIDialogTitlePro, MoonUIDialogTriggerPro, DraggableList as MoonUIDraggableListPro, MoonUIDropdownMenuCheckboxItemPro, MoonUIDropdownMenuContentPro, MoonUIDropdownMenuGroupPro, MoonUIDropdownMenuItemPro, MoonUIDropdownMenuLabelPro, MoonUIDropdownMenuPortalPro, MoonUIDropdownMenuPro, MoonUIDropdownMenuRadioGroupPro, MoonUIDropdownMenuRadioItemPro, MoonUIDropdownMenuSeparatorPro, MoonUIDropdownMenuShortcutPro, MoonUIDropdownMenuSubContentPro, MoonUIDropdownMenuSubPro, MoonUIDropdownMenuSubTriggerPro, MoonUIDropdownMenuTriggerPro, MoonUIFileUploadPro, MoonUIFormWizardPro, MoonUIFormWizardProProps, FunnelData as MoonUIFunnelData, FunnelStage as MoonUIFunnelStage, FunnelWidget as MoonUIFunnelWidget, FunnelWidgetProps as MoonUIFunnelWidgetProps, MoonUIGalleryItemPro, GaugeData as MoonUIGaugeData, GaugeWidget as MoonUIGaugeWidget, GaugeWidgetProps as MoonUIGaugeWidgetProps, MoonUIGestureDrawerPro, MoonUIGestureDrawerProProps, MoonUIInputPro, KPIData as MoonUIKPIData, KPIWidget as MoonUIKPIWidget, KPIWidgetProps as MoonUIKPIWidgetProps, MoonUIKanbanPro, MoonUIKanbanProProps, MoonUILabelPro, LightboxContent as MoonUILightboxContentPro, SimpleLightbox as MoonUILightboxPro, LightboxProvider as MoonUILightboxProviderPro, LightboxTrigger as MoonUILightboxTriggerPro, MoonUIMediaGalleryPro, MoonUIMemoryEfficientDataPro, Navbar as MoonUINavbarPro, MoonUINavbarProProps, MoonUIPaginationContentPro, MoonUIPaginationEllipsisPro, MoonUIPaginationItemPro, MoonUIPaginationLinkPro, MoonUIPaginationNextPro, MoonUIPaginationPreviousPro, MoonUIPaginationPro, PhoneNumberInput as MoonUIPhoneNumberInputPro, MoonUIPhoneNumberInputProProps, MoonUIPhoneNumberInputSimple, MoonUIPopoverContentPro, MoonUIPopoverPro, MoonUIPopoverTriggerPro, MoonUIProgressPro, Question as MoonUIQuestion, QuestionType as MoonUIQuestionType, MoonUIQuizFormPro, MoonUIQuizFormProProps, QuizResult as MoonUIQuizResult, QuizSettings as MoonUIQuizSettings, MoonUIRadioGroupContextPro, MoonUIRadioGroupItemPro, MoonUIRadioGroupPro, MoonUIRadioItemWithLabelPro, MoonUIRadioLabelPro, RevenueData as MoonUIRevenueData, RevenueMetric as MoonUIRevenueMetric, RevenueStream as MoonUIRevenueStream, RevenueWidget as MoonUIRevenueWidget, RevenueWidgetProps as MoonUIRevenueWidgetProps, RichTextEditor as MoonUIRichTextEditorPro, MoonUISelectContentPro, MoonUISelectGroupPro, MoonUISelectItemPro, MoonUISelectLabelPro, MoonUISelectPro, MoonUISelectSeparatorPro, MoonUISelectTriggerPro, MoonUISelectValuePro, SelectableVirtualList as MoonUISelectableVirtualListPro, MoonUISelectableVirtualListProProps, MoonUISeparatorPro, ServerData as MoonUIServerData, ServerMetric as MoonUIServerMetric, ServerMonitorWidget as MoonUIServerMonitorWidget, ServerMonitorWidgetProps as MoonUIServerMonitorWidgetProps, Sidebar as MoonUISidebarPro, MoonUISidebarProProps, MoonUISkeletonPro, MoonUISliderPro, MoonUISpotlightCardPro, MoonUISpotlightCardProProps, SwipeableCard as MoonUISwipeableCardPro, MoonUISwipeableCardProProps, MoonUISwitchPro, MoonUITableBodyPro, MoonUITableCaptionPro, MoonUITableCellPro, MoonUITableFooterPro, MoonUITableHeadPro, MoonUITableHeaderPro, MoonUITablePro, MoonUITableRowPro, MoonUITabsContentPro, MoonUITabsPro as MoonUITabsEnhanced, MoonUITabsProProps as MoonUITabsEnhancedProps, MoonUITabsListPro, MoonUITabsPro, MoonUITabsProProps, MoonUITabsTriggerPro, MoonUITextareaPro, Timeline as MoonUITimelinePro, MoonUITimelineProProps, MoonUIToastPro, MoonUITogglePro, MoonUITooltipContentPro, MoonUITooltipPro, MoonUITooltipProviderPro, MoonUITooltipTriggerPro, UserAnswer as MoonUIUserAnswer, VirtualList as MoonUIVirtualListPro, MoonUIVirtualListProProps, WidgetBase as MoonUIWidgetBase, WidgetBaseProps as MoonUIWidgetBaseProps, WidgetChartData as MoonUIWidgetChartData, MoonUIalertVariantsPro, MoonUIaspectRatioVariantsPro, MoonUIbreadcrumbVariantsPro, collapsibleContentVariants as MoonUIcollapsibleContentVariantsPro, collapsibleTriggerVariants as MoonUIcollapsibleTriggerVariantsPro, MoonUIradioGroupItemVariantsPro, MoonUItableVariantsPro, MoonUItoggleVariantsPro, MorphingText, MorphingTextProps, MouseTrail, MouseTrailProps, Navbar, NavbarConfig, NavbarItem, NavbarProps, NavbarSection, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NeonEffect, NeonEffectProps, NestedEvent, NumberTicker, NumberTickerProps, OpenAIProvider, OptimizedImage, OptimizedImageProps, OverlayRenderProp, MoonUIPaginationPro as Pagination, MoonUIPaginationContentPro as PaginationContent, MoonUIPaginationEllipsisPro as PaginationEllipsis, MoonUIPaginationItemPro as PaginationItem, MoonUIPaginationLinkPro as PaginationLink, MoonUIPaginationNextPro as PaginationNext, MoonUIPaginationPreviousPro as PaginationPrevious, ParallaxScroll, ParallaxScrollProps, Particles, ParticlesProps, PathAnimations, PathAnimationsProps, PerformanceAlert, PerformanceDebugger, PerformanceDebuggerProps, PerformanceEntry, PerformanceMetric, PerformanceMetrics, PerformanceMonitor, PerformanceMonitorProps, PhoneNumberInput, PhoneNumberInputProps, PinchZoom, MoonUIPopoverPro as Popover, MoonUIPopoverContentPro as PopoverContent, MoonUIPopoverTriggerPro as PopoverTrigger, MoonUIProgressPro as Progress, ProgressData, QuestionType$1 as QuestionType, QuizAnswer, QuizForm, QuizFormProps, QuizQuestion, QuizResult$1 as QuizResult, MoonUIRadioGroupPro as RadioGroup, MoonUIRadioGroupContextPro as RadioGroupContext, MoonUIRadioGroupItemPro as RadioGroupItem, MoonUIRadioItemWithLabelPro as RadioItemWithLabel, MoonUIRadioLabelPro as RadioLabel, RangeEvent, RealTimePerformanceMonitor, RealTimePerformanceMonitorProps, RecurringEvent, RevealCard, RevealCardProps, RevealCards, RevealCardsProps, RevenueData, RevenueMetric, RevenueStream, RevenueWidget, RevenueWidgetProps, RichTextEditor, RichTextEditorProps, Ripple, RippleProps, spotlightPresets as SPOTLIGHT_PRESETS, SVGAnimations, SVGAnimationsProps, ScrambledText, ScrambledTextProps, ScrollArea, ScrollBar, ScrollReveal, ScrollRevealProps, MoonUISelectPro as Select, MoonUISelectContentPro as SelectContent, MoonUISelectGroupPro as SelectGroup, MoonUISelectItemPro as SelectItem, MoonUISelectLabelPro as SelectLabel, MoonUISelectSeparatorPro as SelectSeparator, MoonUISelectTriggerPro as SelectTrigger, MoonUISelectValuePro as SelectValue, SelectableVirtualList, SelectableVirtualListProps, MoonUISeparatorPro as Separator, ServerData, ServerMetric, ServerMonitorWidget, ServerMonitorWidgetProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shimmer, ShimmerProps, ShinyText, ShinyTextProps, Sidebar, SidebarConfig, SidebarItem, SidebarSection, SidebarState, SimpleLightbox, MoonUISkeletonPro as Skeleton, MoonUISliderPro as Slider, Sparkles, SparklesProps, SplashCursor, SplashCursorContainer, SplashCursorContainerProps, SplashCursorProps, Spotlight, SpotlightPreset, SpotlightProps, SpringConfig, SpringPhysics, SpringPhysicsProps, Starfield, StarfieldProps, SubscriptionProvider, SwipeActions, SwipeActionsProps, SwipeableCard, SwipeableCardProps, MoonUISwitchPro as Switch, TabItem, MoonUITablePro as Table, MoonUITableBodyPro as TableBody, MoonUITableCaptionPro as TableCaption, MoonUITableCellPro as TableCell, TableFeatures, MoonUITableFooterPro as TableFooter, MoonUITableHeadPro as TableHead, MoonUITableHeaderPro as TableHeader, MoonUITableRowPro as TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text3D, Text3DProps, TextReveal, TextRevealProps, MoonUITextareaPro as Textarea, Timeline, TimelineAnimation, TimelineEvent, TimelineEventBase, TimelineEventMetadata, TimelineEventType, TimelineGroupBy, TimelineLayout, TimelineProps, TimelineTheme, TimelineUser, MoonUIToastPro as Toast, MoonUITogglePro as Toggle, MoonUITooltipPro as Tooltip, MoonUITooltipContentPro as TooltipContent, MoonUITooltipProviderPro as TooltipProvider, MoonUITooltipTriggerPro as TooltipTrigger, TouchGestures, TouchGesturesProps, TypewriterText, TypewriterTextProps, VirtualList, VirtualListProps, Waves, WavesProps, WavyText, WavyTextProps, Widget, WidgetBase, WidgetBaseProps, WidgetChartData, WizardStep, WizardStepContentProps, WordRotate, WordRotateProps, MoonUIalertVariantsPro as alertVariants, MoonUIaspectRatioVariantsPro as aspectRatioVariants, moonUIBadgeVariantsPro as badgeVariants, MoonUIbreadcrumbVariantsPro as breadcrumbVariants, moonUIButtonProVariants as buttonVariants, clearCache, cn, collapsibleContentVariants, collapsibleTriggerVariants, commandVariantsPro, createAIProvider, dotPatternConfig, forceRefresh, galleryItemVariants, galleryVariants, geometricPatternsConfig, getExpandableColumn, gradientFlowConfig, gridDistortionConfig, hoverCard3DVariants, liquidBackgroundConfig, meshGradientConfig, moonUIAnimatedButtonProVariants, badgeVariants as moonUIAvatarBadgeVariants, avatarVariants as moonUIAvatarProVariants, statusVariants as moonUIAvatarStatusVariants, moonUIBadgeVariantsPro, moonUIButtonProVariants, gestureDrawerVariants as moonUIGestureDrawerProVariants, moonUISeparatorVariantsPro, navigationMenuTriggerStyle, countries as phoneCountries, MoonUIradioGroupItemVariantsPro as radioGroupItemVariants, moonUISeparatorVariantsPro as separatorVariants, spotlightPresets, MoonUItableVariantsPro as tableVariants, MoonUItoggleVariantsPro as toggleVariants, useAccordionAnalytics, useCollapsibleAnalytics, useExpandableRows, useFormWizard, useStreamingData, useSubscription, useSubscriptionContext, useVirtualList, wavesConfig };