export interface Phase2RuntimeClaimAcceptanceReport { generatedAt: string; repoAlias: string; claim_fields_presence: { rule_id: boolean; rule_version: boolean; scope: boolean; guarantees: boolean; non_guarantees: boolean; }; failure_classification_coverage: string[]; failure_classification_missing: string[]; coverage_pass: boolean; samples: { matched_status?: string; matched_reason?: string; evidence_missing_reason?: string; verification_failed_reason?: string; unmatched_reason?: string; }; reproduction_commands: Record; } export declare function buildPhase2RuntimeClaimAcceptanceReport(input: { repoAlias: string; }): Promise; export declare function writePhase2RuntimeClaimAcceptanceReport(outPath: string, report: Phase2RuntimeClaimAcceptanceReport): Promise;