import type { ProviderType, StreamEvent } from '../../shared/types/provider.js'; export interface ProviderEventLogRecord { timestamp: string; provider: ProviderType; provider_model: string; event_type: string; run_id: string; step: string; session_id?: string; message_id?: string; call_id?: string; request_id?: string; data: Record; } export declare function normalizeProviderEvent(event: StreamEvent, provider: ProviderType, providerModel: string, step: string, runId: string): ProviderEventLogRecord; //# sourceMappingURL=providerEvent.d.ts.map