import type { OpenClawConfig } from "../config/types.js"; import type { getAgentLocalStatuses as getAgentLocalStatusesFn } from "./status.agent-local.js"; import { type MemoryPluginStatus, type MemoryStatusSnapshot } from "./status.scan.shared.js"; export declare function resolveDefaultMemoryStorePath(agentId: string): string; export declare function resolveStatusMemoryStatusSnapshot(params: { cfg: OpenClawConfig; agentStatus: Awaited>; memoryPlugin: MemoryPluginStatus; requireDefaultStore?: (agentId: string) => string; }): Promise;