import { TableColumnItem } from './tableColumnItem.generated.js'; import { z } from 'zod'; export type TableItem = { title?: string | undefined; description?: string | undefined; columns?: Array | undefined; }; export declare const tableItem: z.ZodObject<{ title: z.ZodOptional; description: z.ZodOptional; columns: z.ZodOptional; formatter: z.ZodObject<{ exportPath: z.ZodString; exportName: z.ZodString; }, z.core.$strip>; label: z.ZodString; }, z.core.$strip>>>; }, z.core.$strip>; //# sourceMappingURL=tableItem.generated.d.ts.map