import type { Config, Context } from "@/types"; import type { Storage } from "../../../storage/storage.js"; import type { AgentHistoryRecord } from "./agentTypes.js"; /** * Appends a history record to the active session. * Expects: target agent exists. */ export declare function agentHistoryAppend(storageOrConfig: Storage | Config, ctx: Context, record: AgentHistoryRecord): Promise; //# sourceMappingURL=agentHistoryAppend.d.ts.map