/** * @fileoverview Advanced Loading Optimization Component * @description Implements critical loading optimizations for better Core Web Vitals */ /** * LoadingOptimizer component that implements advanced loading strategies * * @description Optimizations: * 1. Resource prefetching based on user behavior * 2. Intelligent preloading of likely routes * 3. Critical resource prioritization * 4. Performance monitoring and adjustment * * @example Basic Usage * LoadingOptimizer component should be placed at the top level of your App. * Import and use: import LoadingOptimizer from './components/LoadingOptimizer'; * Then add to your JSX. */ export declare const LoadingOptimizer: () => null; //# sourceMappingURL=LoadingOptimizer.d.ts.map