/** * memory_get — dual-mode memory retrieval. * * If `path` param is provided: reads a local workspace .md file. * Otherwise: performs an engram search as fallback. */ import type { EngramRestClient } from '../client.js'; import type { PluginConfig } from '../config.js'; import type { AnyAgentTool, OpenClawPluginToolContext, OpenClawPluginApi } from '../types/openclaw.js'; export declare function createMemoryGetTool(ctx: OpenClawPluginToolContext, client: EngramRestClient, config: PluginConfig, api: OpenClawPluginApi): AnyAgentTool; export declare function formatLocalMemoryFile(filePath: string, content: string): string; //# sourceMappingURL=memory-get.d.ts.map