import type { BotConfig } from "../../config/config.js"; import { type SessionEntry } from "../../config/sessions.js"; type RunResult = Awaited>; export declare function updateSessionStoreAfterAgentRun(params: { cfg: BotConfig; contextTokensOverride?: number; sessionId: string; sessionKey: string; storePath: string; sessionStore: Record; defaultProvider: string; defaultModel: string; fallbackProvider?: string; fallbackModel?: string; result: RunResult; }): Promise; export {};