import { NestableContent } from "./nestable.js"; import { z } from "zod/mini"; //#region src/content/group.d.ts declare const GroupItemContentType: "GroupItemContent"; type GroupItemContent = { __TYPE__: typeof GroupItemContentType; key: string; value: [string, NestableContent | GroupContent][]; }; declare const GroupContentSchema: z.ZodMiniObject<{ __TYPE__: z.ZodMiniLiteral<"GroupContentType">; value: z.ZodMiniArray>>; }, z.core.$strip>; type GroupContent = z.infer; //#endregion export { GroupContent, GroupItemContent }; //# sourceMappingURL=group.d.ts.map