import { z } from 'zod'; export declare const formatSchema: z.ZodEnum<{ json: "json"; md: "md"; }>; export type Format = z.infer; export declare const persistConfigSchema: z.ZodObject<{ outputDir: z.ZodOptional; filename: z.ZodOptional; format: z.ZodOptional>>; skipReports: z.ZodOptional; }, z.core.$strip>; export type PersistConfig = z.infer;