/** * PostgreSQL citext Extension Tools * * Case-insensitive text operations. 6 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; import { createCitextExtensionTool, createCitextConvertColumnTool } from "./setup.js"; import { createCitextListColumnsTool, createCitextCompareTool } from "./list-compare.js"; import { createCitextAnalyzeCandidatesTool, createCitextSchemaAdvisorTool } from "./candidates-advisor.js"; /** * Get all citext tools */ export declare function getCitextTools(adapter: PostgresAdapter): ToolDefinition[]; export { createCitextExtensionTool, createCitextConvertColumnTool, createCitextListColumnsTool, createCitextAnalyzeCandidatesTool, createCitextCompareTool, createCitextSchemaAdvisorTool, }; //# sourceMappingURL=index.d.ts.map