import { z } from "zod"; export declare const RiskItemSchema: z.ZodObject<{ unit_id: z.ZodString; risk_score: z.ZodNumber; signals: z.ZodArray; notes: z.ZodOptional>; }, "strict", z.ZodTypeAny, { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }, { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }>; export type RiskItem = z.infer; export declare const RiskRegisterSchema: z.ZodObject<{ items: z.ZodArray; notes: z.ZodOptional>; }, "strict", z.ZodTypeAny, { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }, { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }>, "many">; }, "strict", z.ZodTypeAny, { items: { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }[]; }, { items: { unit_id: string; risk_score: number; signals: string[]; notes?: string[] | undefined; }[]; }>; export type RiskRegister = z.infer; //# sourceMappingURL=risk.d.ts.map