export type SemanticJUnitTestcase = { readonly evidence: string; readonly identity: string; readonly kind: "failure" | "pass"; }; export type SemanticJUnitReadResult = { readonly ok: true; readonly value: { readonly failureCases: readonly SemanticJUnitTestcase[]; readonly passingCases: readonly SemanticJUnitTestcase[]; readonly testCount: number; }; } | { readonly diagnostics: readonly string[]; readonly ok: false; }; export declare function readSemanticJUnitEvidence(projectDir: string, refs: readonly string[]): SemanticJUnitReadResult;