export declare const auditorInputSchema: { readonly $schema: "http://json-schema.org/draft-07/schema#"; readonly type: "object"; readonly required: readonly ["change_event", "evidence_bundle", "policy_context"]; readonly additionalProperties: false; readonly properties: { readonly change_event: { readonly type: "object"; readonly required: readonly ["id", "type", "environment", "repo", "commit", "files_changed", "diff"]; readonly additionalProperties: false; readonly properties: { readonly id: { readonly type: "string"; readonly minLength: 1; }; readonly type: { readonly type: "string"; readonly enum: readonly ["pull_request", "deploy", "infra_change"]; }; readonly environment: { readonly type: "string"; readonly enum: readonly ["dev", "staging", "prod"]; }; readonly repo: { readonly type: "string"; readonly minLength: 1; }; readonly commit: { readonly type: "string"; readonly pattern: "^[a-f0-9]{40}$"; }; readonly files_changed: { readonly type: "array"; readonly items: { readonly type: "string"; }; readonly minItems: 1; }; readonly diff: { readonly type: "string"; }; }; }; readonly evidence_bundle: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly sbom: { readonly type: "string"; }; readonly vuln_scan: { readonly type: "string"; }; readonly sast_results: { readonly type: "string"; }; readonly iac_scan: { readonly type: "string"; }; readonly provenance: { readonly type: "string"; }; readonly runtime_delta: { readonly type: "string"; }; }; }; readonly policy_context: { readonly type: "object"; readonly required: readonly ["critical_assets", "risk_tolerance"]; readonly additionalProperties: false; readonly properties: { readonly critical_assets: { readonly type: "array"; readonly items: { readonly type: "string"; }; readonly minItems: 1; }; readonly risk_tolerance: { readonly type: "string"; readonly enum: readonly ["low", "medium", "high"]; }; }; }; }; };