/** * Tools that should NOT be captured as observations. * These are low-value, meta-level, or internal tools. * Matches claude-mem's SKIP_TOOLS list. */ export declare const SKIP_TOOLS: Set; /** * Returns true if the tool should be skipped (not captured as observation). * Case-insensitive matching. */ export declare function shouldSkipTool(toolName: string): boolean; //# sourceMappingURL=tool-filter.d.ts.map