/** * postgres-mcp - JSONB Pretty Schema * * Input and output schemas for pg_jsonb_pretty tool. */ import { z } from "zod"; export declare const JsonbPrettySchemaBase: z.ZodObject<{ json: z.ZodOptional; value: z.ZodOptional; table: z.ZodOptional; tableName: z.ZodOptional; column: z.ZodOptional; col: z.ZodOptional; where: z.ZodOptional; filter: z.ZodOptional; limit: z.ZodOptional>; schema: z.ZodOptional; }, z.core.$strip>; export declare const JsonbPrettySchema: z.ZodPreprocess; value: z.ZodOptional; table: z.ZodOptional; tableName: z.ZodOptional; column: z.ZodOptional; col: z.ZodOptional; where: z.ZodOptional; filter: z.ZodOptional; schema: z.ZodOptional; limit: z.ZodOptional>>; }, z.core.$strip>>; export declare const JsonbPrettyOutputSchema: z.ZodObject<{ success: z.ZodOptional; formatted: z.ZodOptional; rows: z.ZodOptional>>; count: z.ZodOptional; error: z.ZodOptional; code: z.ZodOptional; category: z.ZodOptional; recoverable: z.ZodOptional; suggestion: z.ZodOptional; details: z.ZodOptional>; }, z.core.$strip>; //# sourceMappingURL=pretty.d.ts.map