export declare const auditorOutputSchema: { readonly $schema: "http://json-schema.org/draft-07/schema#"; readonly type: "object"; readonly required: readonly ["agent_id", "agent_state", "events", "meta"]; readonly additionalProperties: false; readonly properties: { readonly agent_id: { readonly type: "string"; readonly const: "exploit-reviewer"; }; readonly agent_state: { readonly type: "string"; readonly enum: readonly ["idle", "analyzing", "conflict", "escalated", "blocked"]; }; readonly events: { readonly type: "array"; readonly items: { readonly type: "object"; readonly required: readonly ["event_type", "target", "payload", "timestamp"]; readonly additionalProperties: false; readonly properties: { readonly event_type: { readonly type: "string"; readonly enum: readonly ["analysis_started", "finding_raised", "conflict_detected", "escalation_triggered"]; }; readonly target: { readonly type: "string"; readonly minLength: 1; }; readonly payload: { readonly type: "object"; readonly required: readonly ["severity", "claim", "attack_path", "affected_assets", "evidence_refs", "assurance_break", "confidence"]; readonly additionalProperties: false; readonly properties: { readonly severity: { readonly type: "string"; readonly enum: readonly ["low", "medium", "high", "critical"]; }; readonly claim: { readonly type: "string"; readonly minLength: 1; }; readonly attack_path: { readonly type: "array"; readonly items: { readonly type: "string"; }; readonly minItems: 1; }; readonly affected_assets: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly evidence_refs: { readonly type: "array"; readonly items: { readonly type: "object"; readonly required: readonly ["type", "pointer"]; readonly additionalProperties: false; readonly properties: { readonly type: { readonly type: "string"; readonly enum: readonly ["diff", "sbom", "scan", "provenance", "runtime"]; }; readonly pointer: { readonly type: "string"; readonly minLength: 1; }; }; }; }; readonly assurance_break: { readonly type: "array"; readonly items: { readonly type: "string"; readonly enum: readonly ["integrity", "access_control", "isolation", "auditability"]; }; }; readonly confidence: { readonly type: "number"; readonly minimum: 0; readonly maximum: 1; }; }; }; readonly timestamp: { readonly type: "string"; readonly format: "date-time"; }; }; }; }; readonly meta: { readonly type: "object"; readonly required: readonly ["assumptions", "uncertainties"]; readonly additionalProperties: false; readonly properties: { readonly assumptions: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; readonly uncertainties: { readonly type: "array"; readonly items: { readonly type: "string"; }; }; }; }; }; };