import { RichTextContentBlock } from "./richText.js"; import { z } from "zod/mini"; //#region src/content/table.d.ts declare const TableContentSchema: z.ZodMiniObject<{ __TYPE__: z.ZodMiniLiteral<"TableContent">; content: z.ZodMiniArray; type: z.ZodMiniLiteral<"tableRow">; content: z.ZodMiniArray; type: z.ZodMiniUnion, z.ZodMiniLiteral<"tableCell">]>; content: z.ZodMiniObject<{ __TYPE__: z.ZodMiniLiteral<"StructuredTextContent">; value: z.ZodMiniArray>>; }, z.core.$strip>; columnWidth: z.ZodMiniOptional>; }, z.core.$strip>>; }, z.core.$strict>>; }, z.core.$strip>; type TableContent = z.infer; //#endregion export { TableContent }; //# sourceMappingURL=table.d.ts.map