/** * ModularGlassDataChart Component * * A modular implementation of the GlassDataChart component that uses separate * components for chart rendering, tooltips, filters, and KPI display. */ import React from "react"; import { GlassDataChartProps, GlassDataChartRef } from "./types/ChartProps"; /** * ModularGlassDataChart Component * * An advanced glass-styled chart component with physics-based interactions, * smooth animations, and rich customization options. Enhanced with consciousness interface features. */ export declare const ModularGlassDataChart: React.ForwardRefExoticComponent>; /** * Enhanced ModularGlassDataChart with consciousness features enabled by default * Use this for data-heavy charts that need intelligent insights */ export declare const ConsciousModularGlassDataChart: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * Predictive ModularGlassDataChart optimized for complex data analysis */ export declare const PredictiveModularGlassDataChart: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * Adaptive ModularGlassDataChart that responds to user cognitive load */ export declare const AdaptiveModularGlassDataChart: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * Immersive ModularGlassDataChart for dashboard and presentation contexts */ export declare const ImmersiveModularGlassDataChart: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; /** * Pre-configured consciousness modular chart presets */ export declare const ModularChartConsciousnessPresets: { /** * Minimal consciousness features for performance-sensitive modular charts */ readonly minimal: { readonly predictive: true; readonly trackAchievements: true; }; /** * Balanced consciousness features for general modular chart usage */ readonly balanced: { readonly predictive: true; readonly adaptive: true; readonly biometricResponsive: true; readonly trackAchievements: true; }; /** * Full consciousness features for immersive modular chart experiences */ readonly immersive: { readonly predictive: true; readonly preloadData: true; readonly eyeTracking: true; readonly gazeResponsive: true; readonly adaptive: true; readonly biometricResponsive: true; readonly spatialAudio: true; readonly audioFeedback: true; readonly trackAchievements: true; }; /** * Analytics-focused consciousness features for data exploration */ readonly analytics: { readonly predictive: true; readonly preloadData: true; readonly eyeTracking: true; readonly gazeResponsive: true; readonly trackAchievements: true; readonly usageContext: "analytics"; }; }; export default ModularGlassDataChart; //# sourceMappingURL=ModularGlassDataChart.d.ts.map