import type { ChatMessage } from "../../types.js"; import type { SessionId } from "../events/app-event.js"; import type { JobsPort } from "../ports/jobs-port.js"; export declare function settlePersistedResponderResults(input: { jobs: JobsPort | undefined; sessionId: SessionId; history: readonly ChatMessage[]; }): void;