/** * engram_suppress — suppress an observation from future search results. * * WHEN TO USE: When an observation is outdated, wrong, or no longer relevant. * Suppression is reversible — the observation stays in the database but is hidden from search. */ import type { EngramRestClient } from '../client.js'; import type { PluginConfig } from '../config.js'; import type { AnyAgentTool, OpenClawPluginToolContext } from '../types/openclaw.js'; export declare function createEngramSuppressTool(_ctx: OpenClawPluginToolContext, client: EngramRestClient, _config: PluginConfig): AnyAgentTool; //# sourceMappingURL=engram-suppress.d.ts.map