import type { Config, Context } from "@/types"; import type { Storage } from "../../../storage/storage.js"; import type { AgentHistoryRecord } from "./agentTypes.js"; /** * Loads persisted history stream for one agent. * Expects: records are returned in chronological order across sessions. * When limit is provided, returns at most that many records (oldest first). */ export declare function agentHistoryLoadAll(storageOrConfig: Storage | Config, ctx: Context, limit?: number): Promise; //# sourceMappingURL=agentHistoryLoadAll.d.ts.map