/** * Production-Ready Error Logging Fallback * * This module provides a production-ready fallback for qerrors dependency * to avoid complex dependency chain issues that were blocking test execution. * * Key features: * - Consistent error logging format * - Structured JSON output for production monitoring * - Timestamp and context tracking * - No external dependencies that could cause resolution issues * - Maintains same API as qerrors for compatibility */ declare const qerrors: (error: Error, message?: string, context?: Record) => void; export default qerrors; //# sourceMappingURL=qerrorsFallback.d.ts.map