import type { Event } from "./agent-event.js"; import type { AttemptCompleted, CompletedModelOperation } from "../model/model-operation.js"; /** @internal Public semantic event derived from the canonical model operation result. */ export declare const committedEvent: (input: { readonly operation: CompletedModelOperation; readonly attempt: AttemptCompleted; }) => Event;