import type { Config, Context } from "@/types"; import type { Storage } from "../../../storage/storage.js"; import type { AgentState } from "./agentTypes.js"; /** * Writes agent state to SQLite storage. * Expects: descriptor has been persisted before state writes. */ export declare function agentStateWrite(storageOrConfig: Storage | Config, ctx: Context, state: AgentState): Promise; //# sourceMappingURL=agentStateWrite.d.ts.map