/** * Comprehensive Debug Report Generator * * Provides detailed analysis of all API package operations including: * - Compliance analysis with auto-detection * - Header transformation security analysis * - Event migration tracking * - Network adaptation effectiveness * - Temporary configuration lifecycle * - Fetchff interceptor chain monitoring * * - Performance recommendations */ import type { ComprehensiveDebugReport } from '@plyaz/types/api'; /** * Security analysis for headers */ /** * Event migration analysis */ /** * Network adaptation analysis */ /** * Temporary config lifecycle analysis */ /** * Fetchff interceptor analysis */ /** * Event emitter factory analysis */ /** * Event scope analysis */ /** * Available events analysis by source */ /** * Event validation report */ /** * Comprehensive event emitter analysis */ /** * Comprehensive debug report */ /** * Generate comprehensive debug report */ export declare function generateComprehensiveReport(): Promise; /** * Export formatted report with colors */ export declare function formatReportForConsole(report: ComprehensiveDebugReport): string; /** * Log network configuration override * This provides comprehensive logging for network overrides */ export declare function logNetworkOverride(params: { property: string; originalValue: unknown; overrideValue: unknown; source: string; reason: string; networkInfo?: Record; networkQuality?: string; duration?: number; trigger?: string; }): void; //# sourceMappingURL=DebugReport.d.ts.map