import type { SessionEntry } from "../../config/sessions/types.js"; import type { KlawConfig } from "../../config/types.klaw.js"; export declare function resolveCronSession(params: { cfg: KlawConfig; sessionKey: string; nowMs: number; agentId: string; forceNew?: boolean; store?: Record; }): { storePath: string; store: Record; sessionEntry: SessionEntry; systemSent: boolean; isNewSession: boolean; previousSessionId: string | undefined; };