UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

41 lines 1.2 kB
/** * Consciousness Interface Performance Benchmark Suite * * Performance testing and optimization validation for consciousness features * across all enhanced components to ensure smooth user experience. */ import React from 'react'; /** * Performance Testing Utilities */ export declare class ConsciousnessPerformanceUtils { /** * Measure component render time */ static measureRenderTime(component: React.ReactElement): Promise<number>; /** * Measure memory usage of components */ static measureMemoryUsage(): number; /** * Run performance benchmark */ static runBenchmark(testName: string, component: React.ReactElement, iterations?: number): Promise<{ averageTime: number; minTime: number; maxTime: number; standardDeviation: number; }>; /** * Profile consciousness hook usage */ static getHookUsageProfile(): { predictiveEngine: number; biometricAdapter: number; eyeTracker: number; spatialAudio: number; achievements: number; interactionRecorder: number; }; } //# sourceMappingURL=ConsciousnessPerformanceBenchmark.d.ts.map