/** Evidence type taxonomy */ export type EvidenceType = 'receipt' | 'witness_attestation' | 'delivery_artifact' | 'external_log' | 'human_statement' | 'measurement' | 'replay_trace' | 'checkpoint_proof'; export interface TypedEvidence { evidenceId: string; type: EvidenceType; /** ID of the referenced artifact */ artifactId: string; /** Who submitted this evidence */ submittedBy: string; submittedAt: string; /** Optional evidence weight (0-1). Higher = stronger evidence. */ weight?: number; } //# sourceMappingURL=evidence.d.ts.map