import { z } from "zod/mini"; //#region src/content/boolean.d.ts declare const BooleanContentSchema: z.ZodMiniObject<{ __TYPE__: z.ZodMiniLiteral<"BooleanContent">; value: z.ZodMiniBoolean; }, z.core.$strip>; type BooleanContent = z.infer; //#endregion export { BooleanContent }; //# sourceMappingURL=boolean.d.ts.map