/** * Performance Optimization Presets * Pre-configured performance strategies for different use cases */ import type { PerformancePresetName, PerformanceConfig } from '@plyaz/types/api'; /** * Performance-optimized configuration presets * Based on fetchff's performance implications documentation * * Performance Impact Statistics: * - Caching: 70-90% fewer requests * - Deduplication: 50-80% fewer concurrent requests * - SWR: 90% faster perceived loading * - Cancellation: Reduced bandwidth waste * - Retry: 95%+ success rate */ export declare const performancePresets: Readonly>; //# sourceMappingURL=presets.d.ts.map