/** * PostgreSQL Text Tools - Pattern Matching & Similarity * * Trigram similarity, fuzzy matching, and regex. * 3 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; export declare function createTrigramSimilarityTool(adapter: PostgresAdapter): ToolDefinition; export declare function createFuzzyMatchTool(adapter: PostgresAdapter): ToolDefinition; export declare function createRegexpMatchTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=matching.d.ts.map