import { z } from "zod/mini"; //#region src/model/richText.d.ts declare const RichTextModelNodeType: { readonly heading1: "heading1"; readonly heading2: "heading2"; readonly heading3: "heading3"; readonly heading4: "heading4"; readonly heading5: "heading5"; readonly heading6: "heading6"; readonly paragraph: "paragraph"; readonly preformatted: "preformatted"; readonly orderedList: "o-list-item"; readonly list: "list-item"; readonly image: "image"; readonly embed: "embed"; readonly hyperlink: "hyperlink"; readonly strong: "strong"; readonly em: "em"; readonly rtl: "rtl"; }; type RichTextModelNodeTypes = (typeof RichTextModelNodeType)[keyof typeof RichTextModelNodeType]; declare const RichTextModelSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"StructuredText">; fieldset: z.ZodMiniOptional>>; config: z.ZodMiniOptional>>; placeholder: z.ZodMiniOptional>; useAsTitle: z.ZodMiniOptional>; single: z.ZodMiniOptional, z.ZodMiniNull]>, z.ZodMiniTransform>>; multi: z.ZodMiniOptional, z.ZodMiniNull]>, z.ZodMiniTransform>>; imageConstraint: z.ZodMiniOptional>>; height: z.ZodMiniOptional>>; }, z.core.$strip>>; labels: z.ZodMiniOptional>>; allowTargetBlank: z.ZodMiniOptional>; }, z.core.$strip>>; }, z.core.$strip>; type RichTextModel = z.infer; //#endregion export { RichTextModel, RichTextModelNodeType, RichTextModelNodeTypes }; //# sourceMappingURL=richText.d.ts.map