import { z } from "zod"; /** * Six consistency states a model node can be in, per proposal 001 §3.2. * Default for freshly-imported seed nodes is "unverified": the real * implementation exists in the target repo, but the model hasn't yet * attached enough Scenario/Evidence to call it conformant. */ export declare const ConsistencyStatus: z.ZodEnum<["conformant", "unimplemented", "unverified", "drifted", "unregistered", "deprecated"]>; export type ConsistencyStatus = z.infer; /** * The 5 junction risk classes (衔接点风险模式) — the frozen taxonomy for the seed. * Every Junction must classify itself under exactly one of these. */ export declare const RiskClass: z.ZodEnum<["handoff", "idempotency", "projection", "failure_propagation", "watchdog"]>; export type RiskClass = z.infer; export declare const DebtCategory: z.ZodEnum<["dead_state_machine", "deferred", "other"]>; export type DebtCategory = z.infer; //# sourceMappingURL=status.d.ts.map