import { z } from 'zod'; export declare const LEVELS: readonly ["h1", "h2", "h3", "h4", "h5", "p", "small"]; export declare const levelZ: z.ZodEnum<{ small: "small"; h1: "h1"; h2: "h2"; h3: "h3"; h4: "h4"; h5: "h5"; p: "p"; }>; export type Level = z.infer; //# sourceMappingURL=types.gen.d.ts.map