/** * PostgreSQL ltree Extension Tools — Basic Tree CRUD * * Contains the public entry point `getLtreeTools()` and 5 tool creators * for extension setup, querying, subpath extraction, LCA, and column listing. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import { type ToolDefinition } from "../../../../types/index.js"; export declare function getLtreeTools(adapter: PostgresAdapter): ToolDefinition[]; //# sourceMappingURL=basic.d.ts.map