import type { ProviderErrorEvent } from '../../../modules/llmswitch/bridge.js'; export type ProviderErrorLogPayload = { stage: string; status?: number; code?: string; runtime?: ProviderErrorEvent['runtime']; error: Error & { code?: string; details?: Record; }; }; export declare function logProviderErrorSummary(payload: ProviderErrorLogPayload): void;