/** * PostgreSQL Schema Tools - Catalog Listing * * Listing tools for functions, triggers, and constraints. * 3 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; export declare function createListFunctionsTool(adapter: PostgresAdapter): ToolDefinition; export declare function createListTriggersTool(adapter: PostgresAdapter): ToolDefinition; export declare function createListConstraintsTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=catalog.d.ts.map