import type { SessionNotification } from '@agentclientprotocol/sdk'; import type { RuntimeEvent } from './events.js'; export interface NormalizeUpdateContext { sessionId: string; at?: number; turnId?: string; messageId?: string; reasoningId?: string; } export declare function normalizeAcpUpdate(notification: SessionNotification, context: NormalizeUpdateContext): RuntimeEvent[];