/** * Centralized error logging utilities for hooks * * Provides structured error and warning logging with fallback to console */ /** * Log a hook warning with context * * @param hookName - Name of the hook where the warning occurred * @param message - Warning message * @param context - Optional context object for additional details */ export declare function logHookWarning(hookName: string, message: string, context?: Record): void; /** * Log a hook error with context * * @param hookName - Name of the hook where the error occurred * @param message - Error message * @param error - The error object * @param context - Optional context object for additional details */ export declare function logHookError(hookName: string, message: string, error: unknown, context?: Record): void; //# sourceMappingURL=errorLogging.d.ts.map