import { z } from 'zod';
export declare const SEVERITY_LEVELS: readonly ["error", "warning", "ignore", "forbidden"];
export declare const SeverityLevelSchema: z.ZodEnum<["error", "warning", "ignore", "forbidden"]>;
export type SeverityLevel = z.infer<typeof SeverityLevelSchema>;