import type { Config, Context } from "@/types"; import type { Storage } from "../../../storage/storage.js"; import type { AgentState } from "./agentTypes.js"; /** * Reads agent state from SQLite storage. * Expects: migrations have been applied before reads. */ export declare function agentStateRead(storageOrConfig: Storage | Config, ctx: Context): Promise; //# sourceMappingURL=agentStateRead.d.ts.map