/** * PostgreSQL Text Tools - LIKE Search & Sentiment * * LIKE/ILIKE pattern search and basic keyword-based sentiment analysis. * 2 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; export declare function createLikeSearchTool(adapter: PostgresAdapter): ToolDefinition; /** * Basic sentiment analysis using word matching */ export declare function createTextSentimentTool(_adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=search-tools.d.ts.map