/** * PostgreSQL JSONB Tools - Pretty Print * * Format JSONB data with indentation for readability. * Supports both raw JSON string input and table column extraction. * 1 tool total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; export declare function createJsonbPrettyTool(adapter: PostgresAdapter): ToolDefinition; //# sourceMappingURL=pretty.d.ts.map