/** * FileWatcherService — watches workspace memory files and syncs them to engram. * * Replaces memory-core chokidar watcher. Watches MEMORY.md and memory directory, * debounces changes per file, and bulk-imports updated chunks into engram. */ import type { EngramRestClient } from '../client.js'; import type { PluginConfig } from '../config.js'; import type { OpenClawPluginService, PluginLogger } from '../types/openclaw.js'; export declare function createFileWatcherService(workspaceDir: string, client: EngramRestClient, config: PluginConfig, logger: PluginLogger): OpenClawPluginService; //# sourceMappingURL=file-watcher.d.ts.map